biofriction-wp-theme/node_modules/es-abstract/helpers/isPrimitive.js
2021-10-26 14:18:09 +02:00

4 lines
136 B
JavaScript

module.exports = function isPrimitive(value) {
return value === null || (typeof value !== 'function' && typeof value !== 'object');
};