Skip to content

Instantly share code, notes, and snippets.

@jergason
Created April 15, 2014 18:06
Show Gist options
  • Select an option

  • Save jergason/10753976 to your computer and use it in GitHub Desktop.

Select an option

Save jergason/10753976 to your computer and use it in GitHub Desktop.
async.waterfall [
(cb) -> doStuff(cb)
(result, cb) -> doOtherStuff(result, cb)
(someOtherResult, cb) -> finally(someOtherResult, cb)
], (err, res) ->
console.log 'res is', res
# ᕕ( ᐛ )ᕗ WELP
async.waterfall [
(cb) -> doStuff(cb)
(result, cb) -> doOtherStuff(result, cb)
(someOtherResult, cb) -> finally(someOtherResult, cb)
], (err, res) ->
console.log 'res is', res
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment