A collection of helpers for my projects. Here be dragons.
- Documentation: https://trashpanda001.github.io/helpers
- GitHub: https://github.com/trashpanda001/helpers
- NPM: https://www.npmjs.com/package/@trashpanda001/helpers
pnpm add @trashpanda001/helpersor
npm install @trashpanda001/helpersimport { chunkEvery } from "@trashpanda001/helpers/array"
chunkEvery([1, 2, 3, 4, 5], 2)
// [[1, 2], [3, 4], [5]]