Skip to content

Instantly share code, notes, and snippets.

@ianbishop
Last active January 1, 2016 20:49
Show Gist options
  • Save ianbishop/8199989 to your computer and use it in GitHub Desktop.
Save ianbishop/8199989 to your computer and use it in GitHub Desktop.
parallelSearch = (keywords, cb) ->
out = []
await
for k,i in keywords
search k, defer out[i]
cb out
serialSearch = (keywords, cb) ->
out = []
for k, i in keywords
await search k, defer out[i]
cb out
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment