jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
Trim function
Changes from /20:
<script>
/*
Source of es5_shim(str): https://github.com/kriskowal/es5-shim/blob/master/es5-shim.js
*/
var es5_shim = function(){
var ws = "\x09\x0A\x0B\x0C\x0D\x20\xA0\u1680\u180E\u2000\u2001\u2002\u2003" + "\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028" + "\u2029\uFEFF";
ws = "[" + ws + "]";
var trimBeginRegexp = new RegExp("^" + ws + ws + "*"),
trimEndRegexp = new RegExp(ws + ws + "*$");
return function(str) {
return str.replace(trimBeginRegexp, "").replace(trimEndRegexp, "");
};
}();
function trim28(str) {
var c;
for (var i = 0; i < str.length; i++) {
c = str.charCodeAt(i);
if(c < 8192) {
if(c < 256 && (c == 32 || (c >= 9 && c <= 13) || c == 160)) continue;
else if(c == 5760 || c == 6158) continue;
break;
} else if(c <= 8202 || c == 8232 || c == 8233 || c == 8239 || c == 8287 || c == 12288) continue;
break;
}
for (var j = str.length - 1; j >= i; j--) {
c = str.charCodeAt(j);
if(c < 8192) {
if(c < 256 && (c == 32 || (c >= 9 && c <= 13) || c == 160)) continue;
else if(c == 5760 || c == 6158) continue;
break;
} else if(c <= 8202 || c == 8232 || c == 8233 || c == 8239 || c == 8287 || c == 12288) continue;
break;
}
return str.substring(i, j + 1);
}
function trim27a(str) {
var c;
for (var i = 0; i < str.length; i++) {
c = str.charCodeAt(i);
if (c == 32 || c == 10 || c == 13 || c == 9 || c == 12 || c == 11 || c == 160 || c == 5760 || c == 6158 || c == 8192 || c == 8193 || c == 8194 || c == 8195 || c == 8196 || c == 8197 || c == 8198 || c == 8199 || c == 8200 || c == 8201 || c == 8202 || c == 8232 || c == 8233 || c == 8239 || c == 8287 || c == 12288) continue;
else break;
}
for (var j = str.length - 1; j >= i; j--) {
c = str.charCodeAt(j);
if (c == 32 || c == 10 || c == 13 || c == 9 || c == 12 || c == 11 || c == 160 || c == 5760 || c == 6158 || c == 8192 || c == 8193 || c == 8194 || c == 8195 || c == 8196 || c == 8197 || c == 8198 || c == 8199 || c == 8200 || c == 8201 || c == 8202 || c == 8232 || c == 8233 || c == 8239 || c == 8287 || c == 12288) continue;
else break;
}
return str.substring(i, j + 1);
}
function trim27(str) {
var c;
for (var i = 0; i < str.length; i++) {
c = str.charCodeAt(i);
if (c == 32 || c == 10 || c == 13 || c == 9 || c == 12) continue;
else break;
}
for (var j = str.length - 1; j >= i; j--) {
c = str.charCodeAt(j);
if (c == 32 || c == 10 || c == 13 || c == 9 || c == 12) continue;
else break;
}
return str.substring(i, j + 1);
}
function trim_native(str) {
return str.trim(); // should throw is no such function
}
var inp = " \n\n \n\n a \n a\n a\n a\n a \n\t\ta\t\ta\njahsdkjahkjshdakjhsdkahskd akhsjdh akjshd kashdkajhsd kajshd \nkauyiuqhwep iasldk qpwoie ad \n askdjaslkdjaslkjdaoiur qowioqwhr aspodiquw ijasod iqwiue pqowipoqiw epoqiwpeo iaslkjdqur \t kjahsdkj hakshd\nkajhdk\nk as d \t\n".split('\n');
var buffer = new Array(inp.length);
var correct = ["", "", "", "", "a", "a", "a", "a", "a", "a a", "jahsdkjahkjshdakjhsdkahskd akhsjdh akjshd kashdkajhsd kajshd", "kauyiuqhwep iasldk qpwoie ad", "askdjaslkdjaslkjdaoiur qowioqwhr aspodiquw ijasod iqwiue pqowipoqiw epoqiwpeo iaslkjdqur kjahsdkj hakshd", "kajhdk", "k as d", ""];
function e1() {
for( var i = 0, len = inp.length; i < len; ++i ) {
buffer[i] = trim_native(inp[i]);
}
return buffer;
}
function e2() {
for( var i = 0, len = inp.length; i < len; ++i ) {
buffer[i] = trim27(inp[i]);
}
return buffer;
}
function e3() {
for( var i = 0, len = inp.length; i < len; ++i ) {
buffer[i] = trim27a(inp[i]);
}
return buffer;
}
function e4() {
for( var i = 0, len = inp.length; i < len; ++i ) {
buffer[i] = trim28(inp[i]);
}
return buffer;
}
function e5() {
for( var i = 0, len = inp.length; i < len; ++i ) {
buffer[i] = es5_shim(inp[i]);
}
return buffer;
}
var l = 10000;
while(l--) {
e1();
e2();
e3();
e4();
e5();
}
</script>
for( var i = 0; i < correct.length; ++i ) {
if( a[i] !== correct[i]) {
throw new Error("invalid test");
}
}
Ready to run.
Test | Ops/sec | |
---|---|---|
trim-native |
| ready |
trim27 |
| ready |
trim27a |
| ready |
trim28 |
| ready |
es5_shim |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.