UNPKG
@nathanfaucett/is_string
Version:
latest (0.0.1)
0.0.1
checks if value is a string
github.com/nathanfaucett/is_string
nathanfaucett/is_string
@nathanfaucett/is_string
/
src
/
index.js
7 lines
(4 loc)
•
106 B
JavaScript
View Raw
1
2
3
4
5
6
7
module
.
exports
= isString; function
isString
(value)
{
return
typeof(value) ===
"string"
||
false
; }