Files
old-slucajna-televizija/web/node_modules/es-to-primitive/helpers/isPrimitive.js
2017-10-16 11:19:46 +02:00

4 lines
136 B
JavaScript

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