jx's Gravatar

Posted by jx on 2008-06-14 15:40:38 UTC

function trim13 (str) {
var ws = /\s/, _start = -1, _end = str.length;
while(ws.test(str.charAt(++_start)));
if( _start >= _end) return '';
while(ws.test(str.charAt(--_end)));
return str.slice(_start , _end);
}



advertising



« Back to the article