Skip to content

Commit 89b823a

Browse files
committedFeb 26, 2022
drop yallist, use Array instead
They're fast enough now, saves lots of small object gc
1 parent 0b9e5ed commit 89b823a

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed
 

‎index.js

+8-13
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ const proc = typeof process === 'object' && process ? process : {
55
}
66
const EE = require('events')
77
const Stream = require('stream')
8-
const Yallist = require('yallist')
98
const SD = require('string_decoder').StringDecoder
109

1110
const EOF = Symbol('EOF')
@@ -57,8 +56,8 @@ module.exports = class Minipass extends Stream {
5756
this[FLOWING] = false
5857
// whether we're explicitly paused
5958
this[PAUSED] = false
60-
this.pipes = new Yallist()
61-
this.buffer = new Yallist()
59+
this.pipes = []
60+
this.buffer = []
6261
this[OBJECTMODE] = options && options.objectMode || false
6362
if (this[OBJECTMODE])
6463
this[ENCODING] = null
@@ -196,16 +195,12 @@ module.exports = class Minipass extends Stream {
196195

197196
if (this.buffer.length > 1 && !this[OBJECTMODE]) {
198197
if (this.encoding)
199-
this.buffer = new Yallist([
200-
Array.from(this.buffer).join('')
201-
])
198+
this.buffer = [this.buffer.join('')]
202199
else
203-
this.buffer = new Yallist([
204-
Buffer.concat(Array.from(this.buffer), this[BUFFERLENGTH])
205-
])
200+
this.buffer = [Buffer.concat(this.buffer, this[BUFFERLENGTH])]
206201
}
207202

208-
return this[READ](n || null, this.buffer.head.value)
203+
return this[READ](n || null, this.buffer[0])
209204
} finally {
210205
this[MAYBE_EMIT_END]()
211206
}
@@ -215,7 +210,7 @@ module.exports = class Minipass extends Stream {
215210
if (n === chunk.length || n === null)
216211
this[BUFFERSHIFT]()
217212
else {
218-
this.buffer.head.value = chunk.slice(n)
213+
this.buffer[0] = chunk.slice(n)
219214
chunk = chunk.slice(0, n)
220215
this[BUFFERLENGTH] -= n
221216
}
@@ -299,7 +294,7 @@ module.exports = class Minipass extends Stream {
299294
if (this[OBJECTMODE])
300295
this[BUFFERLENGTH] -= 1
301296
else
302-
this[BUFFERLENGTH] -= this.buffer.head.value.length
297+
this[BUFFERLENGTH] -= this.buffer[0].length
303298
}
304299
return this.buffer.shift()
305300
}
@@ -536,7 +531,7 @@ module.exports = class Minipass extends Stream {
536531
this[DESTROYED] = true
537532

538533
// throw away all buffered data, it's never coming out
539-
this.buffer = new Yallist()
534+
this.buffer.length = 0
540535
this[BUFFERLENGTH] = 0
541536

542537
if (typeof this.close === 'function' && !this[CLOSED])

0 commit comments

Comments
 (0)
Please sign in to comment.