npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

fixed-chunker

0.0.7

@mikeal

npmSnykSocket
Downloads:18
$ npm install fixed-chunker
DailyWeeklyMonthlyYearly

fixed chunker

const fixed = require('fixed-chunker')

for await (const chunk of fixed(anyIteratorThatYieldsBuffers, 1024)) {
  console.log(chunk.length) // guaranteed 1024 for all but the last chunk
}