UNPKG

kefir

Version:

Reactive Programming library for JavaScript inspired by Bacon.js and RxJS with focus on high performance and low memory usage

8 lines (6 loc) 203 B
import repeat from './repeat' export default function concat(observables) { return repeat(function(index) { return observables.length > index ? observables[index] : false }).setName('concat') }