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 type="text/javascript">
// Save native bind
__nativeBind = Function.prototype.bind;
</script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
</script>
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.3.3/underscore-min.js">
</script>
<script src="//ajax.googleapis.com/ajax/libs/mootools/1.5.0/mootools-yui-compressed.js"></script>
<script type="text/javascript">
MooToolsBind = Function.prototype.bind;
// Reset bind
Function.prototype.bind = __nativeBind;
</script>
<script src="//d14ac9rbwzfcvh.cloudfront.net/javascriptsdk/evo-2/evo.min.js"></script>
<script type="text/javascript">
MDNBind = function(fToBind, oThis) {
if (typeof fToBind !== "function") {
// closest thing possible to the ECMAScript 5 internal IsCallable function
throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable");
}
var aArgs = Array.prototype.slice.call(arguments, 1),
fNOP = function() {},
fBound = function() {
return fToBind.apply(oThis,
aArgs.concat(Array.prototype.slice.call(arguments)));
};
fNOP.prototype = this.prototype;
fBound.prototype = new fNOP();
return fBound;
};
</script>
<script type="text/javascript">
// https://github.com/jonathantneal/polyfill
// Function.prototype.bind
PFBind = function bind(scope) {
var
callback = this,
prepend = Array.prototype.slice.call(arguments, 1),
Constructor = function() {},
bound = function() {
return callback.apply(
this instanceof Constructor && scope ? this : scope,
prepend.concat(Array.prototype.slice.call(arguments, 0))
);
};
Constructor.prototype = bound.prototype = callback.prototype;
return bound;
};
</script>
<script type="text/javascript">
// Reset bind
Function.prototype.bind = __nativeBind;
</script>
// Reset bind
Function.prototype.bind = __nativeBind;
Ready to run.
Test | Ops/sec | |
---|---|---|
Native bind |
| ready |
jQuery.proxy |
| ready |
Underscore.js bind |
| ready |
Without bind |
| ready |
MooTools bind |
| ready |
Evo Ygloo |
| ready |
Evo Bind |
| ready |
MDN shim |
| ready |
polyfill bind |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.