Skip to content

Instantly share code, notes, and snippets.

@jooyunghan
Created December 20, 2017 15:16
Show Gist options
  • Save jooyunghan/1c5ddd87180c21addc46c3903c518d3e to your computer and use it in GitHub Desktop.
Save jooyunghan/1c5ddd87180c21addc46c3903c518d3e to your computer and use it in GitHub Desktop.
async function consume(obs) {
for await (const n of obs) {
console.log(n);
if (n >= 5) break;
}
}
consume(Observable.interval(100));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment