vlad 6f123ff03e 18.07 il y a 6 ans
..
index.js 6f123ff03e 18.07 il y a 6 ans
license 6f123ff03e 18.07 il y a 6 ans
package.json 6f123ff03e 18.07 il y a 6 ans
readme.md 6f123ff03e 18.07 il y a 6 ans

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