Skip to content

Instantly share code, notes, and snippets.

@vadimdemedes
Created January 3, 2012 11:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vadimdemedes/1554473 to your computer and use it in GitHub Desktop.
Save vadimdemedes/1554473 to your computer and use it in GitHub Desktop.
async.waterfall [
(next) ->
users = red back.createHash 'facebook_uids'
console.log '1'
next null, users
, (users, next) ->
console.log '2'
users.get fbMetadata.uid, (err, reply) ->
console.log "3 = #{ reply }"
next null, reply
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment