lucaconte 7cc26e831d presentations 6 jaren geleden
..
index.js 7cc26e831d presentations 6 jaren geleden
license 7cc26e831d presentations 6 jaren geleden
package.json 7cc26e831d presentations 6 jaren geleden
readme.md 7cc26e831d presentations 6 jaren geleden

readme.md

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 © Sindre Sorhus