Joined June 2013
·

Bruno Alassia

Urucas
·
Rosario, Argentina
·
·
·

Posted to JavaScript String optimization over 1 year ago

You may want to add this;
String.prototype.trim = function() {
return this.replace(/^\s+/g,'').replace(/\s+$/g,'');
}

Achievements
50 Karma
0 Total ProTip Views