biofriction-wp-theme/node_modules/es-abstract/helpers/isPrimitive.js

4 lines
136 B
JavaScript

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