More comments

pull/2/head
Louis Chatriot 12 years ago
parent 7222008a68
commit 728cdc7ce3
  1. 6
      lib/executor.js

@ -34,6 +34,12 @@ function Executor () {
} }
/**
* @param {Object} options
* options.this - Object to use as this
* options.fn - Function to execute
* options.arguments - Array of arguments
*/
Executor.prototype.push = function () { Executor.prototype.push = function () {
this.queue.push.apply(this, arguments); this.queue.push.apply(this, arguments);
}; };

Loading…
Cancel
Save