peach a19a732be8 commit message 2 年 前
..
index.js a19a732be8 commit message 2 年 前
license a19a732be8 commit message 2 年 前
package.json a19a732be8 commit message 2 年 前
readme.md a19a732be8 commit message 2 年 前

readme.md

is-builtin-module

Check if a string matches the name of a Node.js builtin module

Install

$ npm install is-builtin-module

Usage

const isBuiltinModule = require('is-builtin-module');

isBuiltinModule('fs');
//=> true

isBuiltinModule('fs/promises');
//=> true

isBuiltinModule('node:fs/promises');
//=> true

isBuiltinModule('unicorn');
//=> false

Related


Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.