projecte_ionic/node_modules/core-js/internals/is-object.js
2022-02-09 18:30:03 +01:00

3 lines
110 B
JavaScript
Executable file

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