UNPKG

callbag-take

Version:

Callbag operator that limits the total amount of data sent through

5 lines (3 loc) 130 B
import { Source } from 'callbag'; declare const take: <T>(max: number) => (source: Source<T>) => Source<T>; export default take;