# fixed-chunker **Repository Path**: mirrors_mikeal/fixed-chunker ## Basic Information - **Project Name**: fixed-chunker - **Description**: Efficient fixed length chunker for any generator:wq - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2025-09-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # fixed chunker ```javascript 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 } ```