UNPKG
is_string
Version:
latest (0.0.1)
0.0.1
is_string for the browser and node.js
github.com/nathanfaucett/is_string
nathanfaucett/is_string
is_string
/
src
/
index.js
4 lines
(3 loc)
•
91 B
JavaScript
View Raw
1
2
3
4
module
.
exports
= function
isString
(obj)
{
return
typeof(obj) ===
"string"
||
false
; };