GT2/Ejectable/node_modules/core-js/modules/$.is-object.js
2021-08-16 00:14:59 +00:00

3 lines
No EOL
107 B
JavaScript

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