Socket
Book a DemoInstallSign in
Socket

most-chunksof

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

most-chunksof

splits a list into length-n pieces

2.0.3
latest
Source
npmnpm
Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

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

Keywords

batch

FAQs

Package last updated on 14 Jul 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.