Skip to content

Instantly share code, notes, and snippets.

@Yago
Created May 2, 2017 07:39
Show Gist options
  • Save Yago/39eefcaafff05718b7c2d3f1a8dddbfc to your computer and use it in GitHub Desktop.
Save Yago/39eefcaafff05718b7c2d3f1a8dddbfc to your computer and use it in GitHub Desktop.
const stream = Rx.Observable.from([1, 2, 3]);
stream.subscribe(
(x) => { console.log(x); },
(err) => { console.error(err); },
() => { console.log('Done 👍'); }
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment