Gitiles
Code Review
Sign In
korap.ids-mannheim.de
/
KorAP
/
Kalamar
/
58b9f11ca7b449f85f2f1fb5337ba7633e50b14b
/
.
/
node_modules
/
es-abstract
/
2016
/
IsPropertyKey.js
blob: f43ab581c73e7e2cfe435f427aba67653a5a77c4 [
file
] [
log
] [
blame
]
'use strict'
;
// https://ecma-international.org/ecma-262/6.0/#sec-ispropertykey
module
.
exports
=
function
IsPropertyKey
(
argument
)
{
return
typeof
argument
===
'string'
||
typeof
argument
===
'symbol'
;
};