Sign in
chromium
/
devtools
/
devtools-frontend
/
main
/
.
/
node_modules
/
es-abstract
/
helpers
/
isPropertyKey.js
blob: 4b1c5766a4c66b1d1658f8907f991b9699178390 [
file
] [
log
] [
blame
]
'use strict'
;
module
.
exports
=
function
isPropertyKey
(
argument
)
{
return
typeof
argument
===
'string'
||
typeof
argument
===
'symbol'
;
};