| StringUtils.js | |
| Functions | |
| startsWith | Checks if the given string starts with a certain prefix. |
| endsWith | Checks if the given string ends with a certain suffix. |
| trim | Removes leading and trailing whitespace characters from a string. |
| isEmpty | Checks if given string is empty. |
Checks if the given string starts with a certain prefix.
startsWith : function( string, prefix )
Checks if the given string ends with a certain suffix.
endsWith : function( string, suffix )
Removes leading and trailing whitespace characters from a string.
trim : function( string )
Checks if given string is empty.
isEmpty : function( string )