isObject.js 187 B

12345
  1. const objectConstructor = {}.constructor;
  2. export default function isObject(object) {
  3. return object !== undefined && object !== null && object.constructor === objectConstructor;
  4. }