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