Object utility functions in JavaScript for node.js
var Object = require('objectutils');
Object.isDefined({});
Object.isUndefined({});
Object.isNotEmpty([]);
Object.isEmpty([]);
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"
}
make testruns the testsmake test-covruns the tests with coverage



