isObject.js 137 Bytes
const { toString } = Object.prototype;

export default function isObject(value) {
  return toString.call(value) === '[object Object]';
}