Last active
March 27, 2016 18:21
-
-
Save opsb/b15cf69414812aa14a33 to your computer and use it in GitHub Desktop.
Observable helpers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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