This commit is contained in:
James Grugett 2022-10-12 15:38:47 -05:00
parent d6cb2deadb
commit af3c2ade08

View File

@ -45,4 +45,4 @@ export function toBatches<T>(xs: T[], batchSize: number) {
result.push(xs.slice(i, i + batchSize)) result.push(xs.slice(i, i + batchSize))
} }
return result return result
} }