Sign in
chromium
/
devtools
/
devtools-frontend
/
d5a3755f19aa248cffbcf61f1628362aaa6c0377
/
.
/
node_modules
/
ramda
/
src
/
internal
/
_isString.js
blob: 4686d22a2ed83bc042f8709cbeac741cdc6da54b [
file
] [
log
] [
blame
]
function
_isString
(
x
)
{
return
Object
.
prototype
.
toString
.
call
(
x
)
===
'[object String]'
;
}
module
.
exports
=
_isString
;