📄 is-object.js
/home/palash/git/site/node_modules/core-js-pure/internals/is-object.js
Language: js • Lines: 6
'use strict';
var isCallable = require('../internals/is-callable');

module.exports = function (it) {
  return typeof it == 'object' ? it !== null : isCallable(it);
};