setup-python/node_modules/es-abstract/helpers/isPrimitive.js
Danny McCormick 39c08a0eaa Initial pass
2019-06-26 21:12:00 -04:00

4 lines
136 B
JavaScript

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