Projekt

Obecné

Profil

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

    
3
// https://www.ecma-international.org/ecma-262/6.0/#sec-ispropertykey
4

    
5
module.exports = function IsPropertyKey(argument) {
6
	return typeof argument === 'string' || typeof argument === 'symbol';
7
};
(48-48/117)