From 728cdc7ce326209efa7358c0e3d773fc7e8dd20e Mon Sep 17 00:00:00 2001 From: Louis Chatriot Date: Mon, 3 Jun 2013 22:12:23 +0200 Subject: [PATCH] More comments --- lib/executor.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/executor.js b/lib/executor.js index 2a219f8..e8fb94f 100644 --- a/lib/executor.js +++ b/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 () { this.queue.push.apply(this, arguments); };