Files
FloatApi/node_modules/es-to-primitive/helpers/isPrimitive.js
T
2022-03-07 22:07:57 +07:00

4 lines
136 B
JavaScript

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