GT2/GT2-iOS/node_modules/es-abstract/helpers/isPrimitive.js

4 lines
136 B
JavaScript
Raw Normal View History

2018-02-12 17:26:06 +00:00
module.exports = function isPrimitive(value) {
return value === null || (typeof value !== 'function' && typeof value !== 'object');
};