_isObject.js 106 B

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