A collection of helpers for my projects. Here be dragons.
pnpm add @trashpanda001/helpers
or
npm install @trashpanda001/helpers
import { chunkEvery } from "@trashpanda001/helpers/array"
chunkEvery([1, 2, 3, 4, 5], 2)
// [[1, 2], [3, 4], [5]]