UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

10 lines (9 loc) 286 B
import { zipWithIndexOffset_ } from "./zipWithIndexOffset.mjs"; /** * Zips this chunk with the index of every element, starting from the initial * index value. */ export function zipWithIndex(self) { return zipWithIndexOffset_(self, 0); } //# sourceMappingURL=zipWithIndex.mjs.map