import { splitEvery } from "https://deno.land/x/libauth@v2.0.0-alpha.6/src/lib/format/hex.ts";
Split a string into an array of chunkLength
strings. The final string may
have a length between 1 and chunkLength
.
E.g.: splitEvery('abcde', 2)
→ ['ab', 'cd', 'e']