isObject.js 109 Bytes
module.exports = function isObject(obj) {
	return Object.prototype.toString.call(obj) == '[object Object]'
}