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

isPrimitive.js « helpers « es-abstract « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 06f0bf042525a13635fcd0980e07d4737a09c0c8 (plain)
1
2
3
4
5
'use strict';

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