import { arrayChunk } from "https://deno.land/x/polkadot@0.2.19/util/array/index.ts";
Examples
import { arrayChunk } from 'https://deno.land/x/polkadot@0.2.19/util/mod.ts';
arrayChunk([1, 2, 3, 4, 5]); // [[1, 2], [3, 4], [5]]
Parameters
array: T[]