0.3.6 • Published 11 years ago
rx-intent v0.3.6
#Rx Intent
A more convenient way to use Rx Subject
usage
var intent = new Intent('hello');
// intent.hellos is an instance of Rx.Observable
intent.hellos.subscribe(function (name) {
console.log('hello %s', name);
})
intent.hello('world');
> hello world