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

4 lines
136 B
JavaScript
Raw Normal View History

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