Sign in
chromium
/
devtools
/
devtools-frontend
/
c2fc73e0836ad8bb5565f8c44d78d04b03ad1f5c
/
.
/
node_modules
/
es-abstract
/
2015
/
IsPropertyKey.js
blob: aaeb6f9b6f83b5a39f1f53cec0edbf19cbc61170 [
file
] [
log
] [
blame
]
'use strict'
;
// https://262.ecma-international.org/6.0/#sec-ispropertykey
module
.
exports
=
function
IsPropertyKey
(
argument
)
{
return
typeof
argument
===
'string'
||
typeof
argument
===
'symbol'
;
};