Node.js examples for Object:Object Type
Is object Object type
function isObject(arg) { return typeof arg === 'object' && arg !== null; }