aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/internals/is-object.js
blob: dda6e04d273016597de054ee02e13b731b25d86c (plain)
1
2
3
module.exports = function (it) {
  return typeof it === 'object' ? it !== null : typeof it === 'function';
};