root 3bf41bf355 update | hai 1 ano | |
---|---|---|
.. | ||
index.js | hai 1 ano | |
license | hai 1 ano | |
package.json | hai 1 ano | |
readme.md | hai 1 ano |
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