setup-node/node_modules/es-abstract/helpers/isPrimitive.js
eric sciple ae5dcb46c8 .
2020-01-24 12:30:26 -05:00

4 lines
136 B
JavaScript

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