Spaces:
Runtime error
Runtime error
File size: 209 Bytes
0e27770 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | /**
* 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;
|