javascript trimfunction trim(str) {
var str = str.replace(/^ss*/, ''),
ws = /s/,
i = str.length;
while (ws.test(str.charAt(--i)));
return str.slice(0, i + 1);
}
source: http://blog.stevenlevithan.com/archives/faster-trim-javascript (comments (0) | permalink) |

- a little order in the chaos where the mind dwells


