Sign in
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_nodejs
/
0fcd4e6dcdc03f4e54f9f62ca719cf2c1663f97e
/
.
/
packages
/
jasmine
/
test
/
coverage_source.js
blob: aac2ee3afeb7010f7a98d433937591af79a393c1 [
file
] [
log
] [
blame
]
function
isString
(
input
)
{
if
(
typeof
input
===
'string'
)
{
return
true
;
}
else
{
return
false
;
}
}
exports
.
isString
=
isString
;