UNPKG

flat-zip

Version:

Concats arrays but does so like a zipper instead of appending them. Like lodash.zip + lodash.flat, plus a length limit

3 lines (2 loc) 196 B
/** Concats arrays but does so like a zipper instead of appending them. Like lodash.zip + lodash.flat, plus a total limit */ export declare function flatZip<T>(table: T[][], limit?: number): T[];