kefir
Version:
Reactive Programming library for JavaScript inspired by Bacon.js and RxJS with focus on high performance and low memory usage
30 lines (23 loc) • 506 B
JavaScript
import {createStream, createProperty} from '../patterns/one-source'
const mixin = {
_init({fn}) {
this._fn = fn
},
_free() {
this._fn = null
},
_handleValue(x) {
const fn = this._fn
if (fn(x)) {
this._emitValue(x)
} else {
this._emitEnd()
}
},
}
const S = createStream('takeWhile', mixin)
const P = createProperty('takeWhile', mixin)
const id = x => x
export default function takeWhile(obs, fn = id) {
return new (obs._ofSameType(S, P))(obs, {fn})
}