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