types.js 102 B

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