object-utils
v0.0.1-SNAPSHOT
Published
Object utility functions in JavaScript for node.js
Downloads
43
Readme
Description
Object utility functions in JavaScript for node.js
Usage
var Object = require('objectutils');
Object.isDefined({});
Object.isUndefined({});
Object.isNotEmpty([]);
Object.isEmpty([]);
Including in node.js app
You can include the module from GitHub directly by adding the following to your package.json
and then doing npm install
"dependencies": {
"object-utils": "https://github.com/BoyCook/ObjectUtilsJS/tarball/master"
}
Building
make test
runs the testsmake test-cov
runs the tests with coverage