fix
This commit is contained in:
37
book/node_modules/isobject/README.md
generated
vendored
Normal file
37
book/node_modules/isobject/README.md
generated
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
# isobject [](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._
|
Reference in New Issue
Block a user