Projekt

Obecné

Profil

Stáhnout (151 Bajtů) Statistiky
| Větev: | Revize:
1
'use strict';
2

    
3
module.exports = function isPrimitive(value) {
4
	return value === null || (typeof value !== 'function' && typeof value !== 'object');
5
};
    (1-1/1)