Node.js examples for String:Trim
Right trim a string with regex
String.prototype.rtrim = function() { return this.replace( /\s*$/g, '' ) ; }