GT2/GT2-iOS/node_modules/es-to-primitive/helpers/isPrimitive.js
2018-02-12 17:26:06 +00:00

3 lines
136 B
JavaScript

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