discord-baymax-bot/node_modules/is-builtin-module
2017-03-23 23:52:08 -05:00
..
index.js Pushing changes 2017-03-23 23:52:08 -05:00
license Pushing changes 2017-03-23 23:52:08 -05:00
package.json Pushing changes 2017-03-23 23:52:08 -05:00
readme.md Pushing changes 2017-03-23 23:52:08 -05:00

is-builtin-module Build Status

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

Install

$ npm install --save is-builtin-module

Usage

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

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

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

License

MIT © Sindre Sorhus