isObject.ts 104 B

123
  1. export const isObject = obj => {
  2. return Object.prototype.toString.call(obj) === '[object Object]';
  3. };