qauMaWeb/node_modules/core-js/internals/is-object.js

6 lines
154 B
JavaScript
Raw Permalink Normal View History

2024-10-13 18:02:27 +08:00
var isCallable = require('../internals/is-callable');
module.exports = function (it) {
return typeof it == 'object' ? it !== null : isCallable(it);
};