Welcome to mirror list, hosted at ThFree Co, Russian Federation.

isPrimitive.js « helpers « es-to-primitive « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 366915645275961923035dff493fe5724313b394 (plain)
1
2
3
module.exports = function isPrimitive(value) {
	return value === null || (typeof value !== 'function' && typeof value !== 'object');
};