biofriction-wp-theme/node_modules/core-js/modules/_is-object.js

4 lines
110 B
JavaScript
Raw Permalink Normal View History

2021-10-26 14:18:09 +02:00
module.exports = function (it) {
return typeof it === 'object' ? it !== null : typeof it === 'function';
};