Mohammad Asif cf937194cb Removed un-waned things 1. | hace 6 meses | |
---|---|---|
.. | ||
index.d.ts | hace 6 meses | |
index.js | hace 6 meses | |
license | hace 6 meses | |
package.json | hace 6 meses | |
readme.md | hace 6 meses |
Check if a string matches the name of a Node.js builtin module
$ npm install is-builtin-module
const isBuiltinModule = require('is-builtin-module');
isBuiltinModule('fs');
//=> true
isBuiltinModule('fs/promises');
//=> true
isBuiltinModule('node:fs/promises');
//=> true
isBuiltinModule('unicorn');
//=> false