mirror of
https://github.com/S2-/gitlit
synced 2025-08-04 13:10:09 +02:00
add node modules to repo
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