Sign in
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_nodejs
/
c65e05a53436bba140e28f278e79485c8a3ee6ea
/
.
/
e2e
/
coverage
/
coverage_source.ts
blob: 45f569b9499540d8b799dd6f69bdde73bff70b7f [
file
] [
log
] [
blame
]
export
function
isString
(
input
:
string
)
{
if
(
typeof
input
===
'string'
)
{
return
true
;
}
else
{
return
false
;
}
}