setup-node/node_modules/es-to-primitive/helpers/isPrimitive.js
eric sciple e7ed525da5 .
2020-01-24 16:30:50 -05:00

3 lines
136 B
JavaScript

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