Sign in
chromium
/
devtools
/
devtools-frontend
/
b0fe9c160b76ac24929bb4d7b932a279389c20c2
/
.
/
node_modules
/
es-abstract
/
2021
/
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'
;
};