import { chunk as _chunk } from "lodash"; export const chunk = (size: number, array: T[]): T[][] => { return _chunk(array, size); };