Skip to content

Instantly share code, notes, and snippets.

@opsb
Last active March 27, 2016 18:21
Show Gist options
  • Select an option

  • Save opsb/b15cf69414812aa14a33 to your computer and use it in GitHub Desktop.

Select an option

Save opsb/b15cf69414812aa14a33 to your computer and use it in GitHub Desktop.
Observable helpers
Rx.Observable.prototype.showAs = function(name) {
this.subscribe(value => console.log(name, value));
}
console.log('loaded helpers');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment