Name
Last commit
Last update
..
index.js work yui
license work yui
package.json work yui
readme.md work yui

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 :(

Related

License

MIT :copyright: Sindre Sorhus