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