Current section

Files

Jump to
udia assets node_modules core-js modules _is-object.js
Raw

assets/node_modules/core-js/modules/_is-object.js

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