Sign in
chromium
/
devtools
/
devtools-frontend
/
main
/
.
/
node_modules
/
es-abstract
/
helpers
/
isStringOrUndefined.js
blob: 7fc485779c3adcf76446b4ca7ab06cb0813079b1 [
file
] [
log
] [
blame
]
'use strict'
;
module
.
exports
=
function
isStringOrUndefined
(
item
)
{
return
typeof
item
===
'string'
||
typeof
item
===
'undefined'
;
};