Kévin Tessier 04fab6ba46 install gulp | 6 years ago | |
---|---|---|
.. | ||
index.js | 6 years ago | |
license | 6 years ago | |
package.json | 6 years ago | |
readme.md | 6 years ago |
Check if a string matches the name of a Node.js builtin module
$ npm install --save is-builtin-module
var isBuiltinModule = require('is-builtin-module');
isBuiltinModule('fs');
//=> true
isBuiltinModule('unicorn');
//=> false :(
MIT © Sindre Sorhus