setup-java/node_modules/es-abstract/helpers/isPrimitive.js
Stephen Franceschelli c1a589c5b6 Fix.
2019-07-30 13:41:05 -04:00

3 lines
136 B
JavaScript

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