is-object.js 116 Bytes edit raw blame history 1 2 3 export default function isObject(input) { return Object.prototype.toString.call(input) === '[object Object]'; }