Skip to content

Instantly share code, notes, and snippets.

@developit
Created December 15, 2015 18:01
Show Gist options
  • Save developit/ddc343665426176cf3f3 to your computer and use it in GitHub Desktop.
Save developit/ddc343665426176cf3f3 to your computer and use it in GitHub Desktop.
Code Snippet of the Day - Dec 15th, 2015
// series/sequence
let [a, b] = [await one(), await two()];
// parallel
let [a, b] = await* [one(), two()];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment