HussainLatiff's picture
Added node.js AI Mastering module (#21)
0e27770 verified
raw
history blame
209 Bytes
/**
* Check if `obj` is an object.
*
* @param {Object} obj
* @return {Boolean}
* @api private
*/
function isObject(obj) {
return null !== obj && 'object' === typeof obj;
}
module.exports = isObject;