github-pages-deploy-action/node_modules/core-js-pure/internals/is-object.js
2020-03-06 22:45:40 -05:00

4 lines
110 B
JavaScript

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