wallet-core/node_modules/core-js/modules/$.is-object.js
2017-05-03 15:35:00 +02:00

3 lines
107 B
JavaScript

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