1
0
mirror of https://github.com/actions/setup-node synced 2025-05-06 23:23:54 +00:00
setup-node/node_modules/es-to-primitive/helpers/isPrimitive.js
eric sciple 2b95e76931 .
2020-01-24 12:20:19 -05:00

4 lines
136 B
JavaScript

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