Version 1
[yaffs-website] / node_modules / core-js / modules / _is-object.js
1 module.exports = function(it){
2   return typeof it === 'object' ? it !== null : typeof it === 'function';
3 };