
/**
 *Trims whitespace from string
 */
function trim2(stringToTrim) {
    return stringToTrim.replace(/^\s+|\s+$/g,"");
}
