1
- // @ts -ignore
2
- import BufferList from 'bl/BufferList.js'
1
+ import { Uint8ArrayList } from 'uint8arraylist'
3
2
4
3
/**
5
4
* @type {import('../types').Chunker }
6
5
*/
7
6
async function * fixedSizeChunker ( source , options ) {
8
- let bl = new BufferList ( )
7
+ let list = new Uint8ArrayList ( )
9
8
let currentLength = 0
10
9
let emitted = false
11
10
const maxChunkSize = options . maxChunkSize
12
11
13
12
for await ( const buffer of source ) {
14
- bl . append ( buffer )
13
+ list . append ( buffer )
15
14
16
15
currentLength += buffer . length
17
16
18
17
while ( currentLength >= maxChunkSize ) {
19
- yield bl . slice ( 0 , maxChunkSize )
18
+ yield list . slice ( 0 , maxChunkSize )
20
19
emitted = true
21
20
22
21
// throw away consumed bytes
23
- if ( maxChunkSize === bl . length ) {
24
- bl = new BufferList ( )
22
+ if ( maxChunkSize === list . length ) {
23
+ list = new Uint8ArrayList ( )
25
24
currentLength = 0
26
25
} else {
27
- const newBl = new BufferList ( )
28
- newBl . append ( bl . shallowSlice ( maxChunkSize ) )
29
- bl = newBl
26
+ const newBl = new Uint8ArrayList ( )
27
+ newBl . append ( list . sublist ( maxChunkSize ) )
28
+ list = newBl
30
29
31
30
// update our offset
32
31
currentLength -= maxChunkSize
@@ -36,7 +35,7 @@ async function * fixedSizeChunker (source, options) {
36
35
37
36
if ( ! emitted || currentLength ) {
38
37
// return any remaining bytes or an empty buffer
39
- yield bl . slice ( 0 , currentLength )
38
+ yield list . subarray ( 0 , currentLength )
40
39
}
41
40
}
42
41
0 commit comments