/ Published in: JavaScript
URL: http://lifesinger.org/blog/2010/01/fastest-javascript-trim/
Expand |
Embed | Plain Text
if(!String.prototype.trim) { var TRIM_REG = /^\s+|\s+$/g; String.prototype.trim = function() { return this.replace(TRIM_REG, ''); } }
You need to login to post a comment.
