install-nix-action/node_modules/es-to-primitive/helpers/isPrimitive.js
Domen Kožar 70742d22d9
v6
2019-11-19 17:50:30 +01:00

3 lines
136 B
JavaScript

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