Snow 1d0b9c5323 增加了node环境 | vor 1 Monat | |
---|---|---|
.. | ||
test | vor 1 Monat | |
.gitattributes | vor 1 Monat | |
.jshintrc | vor 1 Monat | |
.npmignore | vor 1 Monat | |
.verbrc.md | vor 1 Monat | |
LICENSE-MIT | vor 1 Monat | |
README.md | vor 1 Monat | |
index.js | vor 1 Monat | |
package.json | vor 1 Monat |
Returns true if the value is an object and not an array or null.
Install with npm:
npm i isobject --save
var isObject = require('isobject');
console.log(isObject(null));
//=> 'false'
console.log(isObject([]));
//=> 'false'
console.log(isObject({}));
//=> 'true'
Jon Schlinkert
Copyright (c) 2014 Jon Schlinkert, contributors.
Released under the MIT license
This file was generated by verb-cli on September 22, 2014.