2022-06-27 14:17:15 -04:00
|
|
|
// Is a given variable an object?
|
|
|
|
|
function isObject(obj) {
|
|
|
|
|
var type = typeof obj;
|
2022-07-11 13:48:02 -04:00
|
|
|
return type === 'function' || (type === 'object' && !!obj);
|
2022-06-27 14:17:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
module.exports = isObject;
|