isPrimitive.js 136 Bytes
Newer Older
YazhouChen's avatar
YazhouChen committed
1 2 3
module.exports = function isPrimitive(value) {
	return value === null || (typeof value !== 'function' && typeof value !== 'object');
};