wallet-core/node_modules/core-js/modules/$.is-object.js

3 lines
107 B
JavaScript
Raw Normal View History

2017-05-03 15:35:00 +02:00
module.exports = function(it){
return typeof it === 'object' ? it !== null : typeof it === 'function';
};