Projekt

Obecné

Profil

Stáhnout (151 Bajtů) Statistiky
| Větev: | Revize:
1 3a515b92 cagy
'use strict';
2
3
module.exports = function isPrimitive(value) {
4
	return value === null || (typeof value !== 'function' && typeof value !== 'object');
5
};