Spaces:
Sleeping
Sleeping
File size: 251 Bytes
19e88d2 | 1 2 3 4 5 6 7 | /**
* Chunk array into arrays of length at most `chunkSize`
*
* @param chunkSize must be greater than or equal to 1
*/
export declare function chunk<T extends unknown[] | string>(arr: T, chunkSize: number): T[];
//# sourceMappingURL=chunk.d.ts.map |