📄 isPrimitive.js
/home/palash/git/site/node_modules/es-abstract/helpers/isPrimitive.js
Language: js • Lines: 5
'use strict';

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