Mohammad Asif cf937194cb Removed un-waned things 1. | hai 5 meses | |
---|---|---|
.. | ||
index.d.ts | hai 5 meses | |
index.js | hai 5 meses | |
license | hai 5 meses | |
package.json | hai 5 meses | |
readme.md | hai 5 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