José Quiñones Flores 4564da0130 Added Laravel project and removed sensitive data | il y a 4 ans | |
---|---|---|
.. | ||
index.js | il y a 4 ans | |
license | il y a 4 ans | |
package.json | il y a 4 ans | |
readme.md | il y a 4 ans |
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