Plucks a property from the object.
property
(String): The property name to pluck from the object.
(Boolean): true
if equal; else false
.
var pluck = Rx.helpers.pluck;
var source = Rx.Observable.interval(1000)
.timeInterval()
.map(pluck('value'))
.take(3);
source.subscribe(console.log.bind(console));
// => 0
// => 1
// => 2