# pull-group-fun **Repository Path**: mirrors_regular/pull-group-fun ## Basic Information - **Project Name**: pull-group-fun - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # pull-group-fun Like [pull-group](https://github.com/dominictarr/pull-group), but instead of producing fixed-sized arrays, you provide a function that determines how items are grouped. ``` js var Group = require('pull-group-fun') pull( pull.values(['foo', bar', 'scuttlebutt', 'baz'']), Group(x => x.length), pull.log() // ['foo', 'bar'], ['scuttlebutt'], ['baz'] ) ``` ## License MIT