UNPKG

is_object

Version:
5 lines (4 loc) 144 B
module.exports = function isObject(obj) { var type = typeof(obj); return type === "function" || (obj && type === "object") || false; };