The isString()
method tests if the provided value is an String and returns a boolean value.
bapi.helper.isString(value)
value
The value to test.
bapi.helper.isString("Test Value.");
//returns true
bapi.helper.isString("false");
//returns true
bapi.helper.isString(125);
//returns false