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