mirror of
https://github.com/morhetz/gruvbox.git
synced 2025-11-18 00:03:38 -05:00
chore(package): re-init package with commitizen and standard-release
This commit is contained in:
33
node_modules/is-builtin-module/readme.md
generated
vendored
Normal file
33
node_modules/is-builtin-module/readme.md
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
# is-builtin-module [](https://travis-ci.org/sindresorhus/is-builtin-module)
|
||||
|
||||
> Check if a string matches the name of a Node.js builtin module
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm install --save is-builtin-module
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
var isBuiltinModule = require('is-builtin-module');
|
||||
|
||||
isBuiltinModule('fs');
|
||||
//=> true
|
||||
|
||||
isBuiltinModule('unicorn');
|
||||
//=> false :(
|
||||
```
|
||||
|
||||
|
||||
## Related
|
||||
|
||||
- [builtin-modules](https://github.com/sindresorhus/builtin-modules) - List of the Node.js builtin modules
|
||||
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Sindre Sorhus](http://sindresorhus.com)
|
||||
Reference in New Issue
Block a user