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