This commit is contained in:
2025-05-12 05:38:44 +09:00
parent dced21c3f8
commit 6d78bfa46e
8120 changed files with 1161564 additions and 0 deletions

37
book/node_modules/isobject/README.md generated vendored Normal file
View File

@ -0,0 +1,37 @@
# isobject [![NPM version](https://badge.fury.io/js/isobject.png)](http://badge.fury.io/js/isobject)
> Returns true if the value is an object and not an array or null.
## Install
Install with [npm](npmjs.org):
```bash
npm i isobject --save
```
## Usage
```js
var isObject = require('isobject');
console.log(isObject(null));
//=> 'false'
console.log(isObject([]));
//=> 'false'
console.log(isObject({}));
//=> 'true'
```
## Author
**Jon Schlinkert**
+ [github/jonschlinkert](https://github.com/jonschlinkert)
+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
## License
Copyright (c) 2014 Jon Schlinkert, contributors.
Released under the MIT license
***
_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on September 22, 2014._