summaryrefslogtreecommitdiff
path: root/src/node_modules/es-abstract/helpers/isPrimitive.js
blob: 06f0bf042525a13635fcd0980e07d4737a09c0c8 (plain)
1
2
3
4
5
'use strict';

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