bind vs emulate (v21)

Revision 21 of this benchmark created on


Preparation HTML

<div></div>
<script>
var emulatebind = function (f, context) {
  var curriedArgs = Array.prototype.slice.call(arguments, 2);
  if (curriedArgs.length) {
    return function () {
      var allArgs = curriedArgs.slice(0);
      for (var i = 0, n = arguments.length; i < n; ++i) {
        allArgs.push(arguments[i]);
      }
      f.apply(context, allArgs);
    };
  } else {
    return createProxy(f, context);
  }
};

function createProxy(f, context) {
  return function () {
    f.apply(context, arguments);
  }
}

var i = { i: 0 };

var f = function () {
  this.i++;
};

    function bind(fn, ctx) {
        return function() {
            return fn.apply(ctx, arguments);
        };
    }


</script>

Setup

var binded = function() {
      return f.bind(i);
    };
    var emulated = function() {
      return emulatebind(f, i);
    };
    var simple = function() {
      return bind(f, i);
    };
    var self = function() {
      return function() {
        i.i++;
      }
    };

Teardown


    i.i = 0;
  

Test runner

Ready to run.

Testing in
TestOps/sec
bind
binded();
ready
emulate
emulated();
ready
simple
simple();
ready
self
self();
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.