bind vs emulate (v4)

Revision 4 of this benchmark created on


Preparation HTML

<div></div>

Setup

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++;
    };
    
    var binded = f.bind(i);
    var emulated = emulatebind(f, i);

Test runner

Ready to run.

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

Revisions

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