setup-node/node_modules/es-to-primitive/helpers/isPrimitive.js
eric sciple 2b95e76931 .
2020-01-24 12:20:19 -05:00

3 lines
136 B
JavaScript

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