thedesk/app/node_modules/es-abstract/helpers/isPrimitive.js

4 lines
136 B
JavaScript
Raw Permalink Normal View History

2019-09-13 00:38:13 +10:00
module.exports = function isPrimitive(value) {
return value === null || (typeof value !== 'function' && typeof value !== 'object');
};