summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/es-abstract/helpers/isPrimitive.js
blob: 366915645275961923035dff493fe5724313b394 (plain)
1
2
3
module.exports = function isPrimitive(value) {
	return value === null || (typeof value !== 'function' && typeof value !== 'object');
};