Opal-Estate-Pro/node_modules/es-to-primitive/helpers/isPrimitive.js
2019-09-13 11:27:52 +07:00

4 lines
136 B
JavaScript
Executable File

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