$ cnpm install most-last
Wait for your last event to play
Last will wait until your stream ends, and play the very last event that has occurred.
npm install --save most-last
import { iterate, take } from 'most'
import { last } from 'most-last'
const stream = last(take(5, iterate(x => x + 1, 0)))
stream.observe(function (x) {
if (x === 4) { // true
...
}
})
Copyright 2013 - present © cnpmjs.org | Home |