From 0a2b642dfcb852e24c2480352a326580954fd7b7 Mon Sep 17 00:00:00 2001 From: Louis Chatriot Date: Tue, 21 May 2013 08:46:38 +0200 Subject: [PATCH] Executor can enqueue tasks --- lib/executor.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/executor.js b/lib/executor.js index 6a42000..f4a376e 100644 --- a/lib/executor.js +++ b/lib/executor.js @@ -59,7 +59,6 @@ function test2 (msg, cb) { }, 500); } -function noop () { console.log("NOOP"); } function bloup () { console.log("FINISHED"); } executor.push({ this: null, fn: test1, arguments: [ 'world', bloup ] });