@trashpanda001/helpers
    Preparing search index...

    @trashpanda001/helpers

    NPM version Build Status

    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]]