UNPKG

@thi.ng/transducers

Version:

Collection of ~170 lightweight, composable transducers, reducers, generators, iterators for functional data transformations

4 lines 223 B
import type { Transducer } from "./api.js"; export declare function drop<T>(n: number): Transducer<T, T>; export declare function drop<T>(n: number, src: Iterable<T>): IterableIterator<T>; //# sourceMappingURL=drop.d.ts.map