Skip to content

Instantly share code, notes, and snippets.

@mattpodwysocki
Created March 18, 2015 18:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattpodwysocki/a1e070ecb43a10c36c09 to your computer and use it in GitHub Desktop.
Save mattpodwysocki/a1e070ecb43a10c36c09 to your computer and use it in GitHub Desktop.
var Observable = require('rx.observable');
var map = require('rx.observable.map');
Observable.prototype.map = function (selector, thisArg) {
return map(this, selector, thisArg);
}
module.exports = {
Observable: Observable
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment