most-chunksof

2.0.3 • Public • Published

most-chunksOf

Splits a list into length-n pieces akin to bufferWithCount, batch, splitEvery

Install

npm install most-chunksof

API

chunksOf

Split a list based on the supplied n argument

import { chunksOf } from 'most-chunksOf'
import { from as fromArray, observe } from 'most'
 
const log = console.log
const xs = fromArray([1,2,3,4,5,6,7])
observe(log, chunksOf(3, xs))
/*
[1,2,3]
[4,5,6]
[7]
*/
 
// if you want to ignore uneven or tail chunks
const chunkEvery = (n, stream) => chunksOf(n, stream).filter(xs => xs.length === n)
const xs = fromArray([1,2,3,4,5,6,7])
observe(log, chunkEvery(3, xs))
/*
[1,2,3]
[4,5,6]
*/

Made with

@most/package-starter

Dependents (2)

Package Sidebar

Install

npm i most-chunksof

Weekly Downloads

3

Version

2.0.3

License

MIT

Last publish

Collaborators

  • davidchase