Node.js examples for String:Trim
Trim string from right
String.prototype.rtrim = function(){ return this.replace(/(\s*$)/g, ""); };