_is-object.js 110 B

123
  1. module.exports = function (it) {
  2. return typeof it === 'object' ? it !== null : typeof it === 'function';
  3. };