Alien-Prototype

 view release on metacpan or  search on metacpan

prototype.js  view on Meta::CPAN

  curry: function() {
    if (!arguments.length) return this;
    var __method = this, args = $A(arguments);
    return function() {
      return __method.apply(this, args.concat($A(arguments)));
    }
  },

  delay: function() {
    var __method = this, args = $A(arguments), timeout = args.shift() * 1000;
    return window.setTimeout(function() {
      return __method.apply(__method, args);
    }, timeout);
  },

  wrap: function(wrapper) {
    var __method = this;
    return function() {
      return wrapper.apply(this, [__method.bind(this)].concat($A(arguments)));
    }
  },

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.379 second using v1.00-cache-2.02-grep-82fe00e-cpan-48ebf85a1963 )