is-object.js 116 Bytes
export default function isObject(input) {
    return Object.prototype.toString.call(input) === '[object Object]';
}