isString
1.6
isString(obj) -> Boolean
Returns true if obj is of type string, false otherwise.
Examples
Object.isString("foo");
//-> true
Object.isString("");
//-> true
Object.isString(123);
//-> false
easing the pain of dynamic web applications
isString(obj) -> Boolean
Returns true if obj is of type string, false otherwise.
Object.isString("foo");
//-> true
Object.isString("");
//-> true
Object.isString(123);
//-> false