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
<script src="https://cdn.rawgit.com/ramda/ramda/v0.10.0/dist/ramda.min.js"></script>
<script src="https://cdn.rawgit.com/lodash/lodash/3.5.0/lodash.min.js"></script>
<script src="https://jspm.io/system@0.14.js"></script>
<script>
System.import('npm:lodash-fp').then(function(lodashfp) {
fp = lodashfp;
R.customTrim = R.curryN(2, R.flip(R.nAry(2, _.trim)));
fp.customTrim = _.curry(_.rearg(_.ary(_.trim, 2), [1, 0]), 2);
document.getElementById('run').style.display = '';
});
document.getElementById('run').style.display = 'none';
</script>
var string = '__________abc__________';
Ready to run.
Test | Ops/sec | |
---|---|---|
_.trim |
| ready |
R.customTrim |
| ready |
R.customTrim curried |
| ready |
fp.customTrim |
| ready |
fp.customTrim curried |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.