Created
November 3, 2012 21:19
-
-
Save zeekay/4008854 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async = require 'async' | |
async.waterfall [ | |
(cb) -> | |
cb null, 1 | |
(one, cb) -> | |
cb null, one, 2 | |
(one, two, cb) -> | |
cb null, one, two, 3 | |
], (err, one, two, three) -> | |
console.log one, two, three |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment