4
0
Fork 0
mirror of https://github.com/actions/setup-node.git synced 2025-11-11 23:03:50 +00:00
setup-node/node_modules/es-to-primitive/helpers/isPrimitive.js
eric sciple ae5dcb46c8 .
2020-01-24 12:30:26 -05:00

3 lines
136 B
JavaScript

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