@@ -5,7 +5,6 @@ const proc = typeof process === 'object' && process ? process : {
5
5
}
6
6
const EE = require ( 'events' )
7
7
const Stream = require ( 'stream' )
8
- const Yallist = require ( 'yallist' )
9
8
const SD = require ( 'string_decoder' ) . StringDecoder
10
9
11
10
const EOF = Symbol ( 'EOF' )
@@ -57,8 +56,8 @@ module.exports = class Minipass extends Stream {
57
56
this [ FLOWING ] = false
58
57
// whether we're explicitly paused
59
58
this [ PAUSED ] = false
60
- this . pipes = new Yallist ( )
61
- this . buffer = new Yallist ( )
59
+ this . pipes = [ ]
60
+ this . buffer = [ ]
62
61
this [ OBJECTMODE ] = options && options . objectMode || false
63
62
if ( this [ OBJECTMODE ] )
64
63
this [ ENCODING ] = null
@@ -196,16 +195,12 @@ module.exports = class Minipass extends Stream {
196
195
197
196
if ( this . buffer . length > 1 && ! this [ OBJECTMODE ] ) {
198
197
if ( this . encoding )
199
- this . buffer = new Yallist ( [
200
- Array . from ( this . buffer ) . join ( '' )
201
- ] )
198
+ this . buffer = [ this . buffer . join ( '' ) ]
202
199
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 ] ) ]
206
201
}
207
202
208
- return this [ READ ] ( n || null , this . buffer . head . value )
203
+ return this [ READ ] ( n || null , this . buffer [ 0 ] )
209
204
} finally {
210
205
this [ MAYBE_EMIT_END ] ( )
211
206
}
@@ -215,7 +210,7 @@ module.exports = class Minipass extends Stream {
215
210
if ( n === chunk . length || n === null )
216
211
this [ BUFFERSHIFT ] ( )
217
212
else {
218
- this . buffer . head . value = chunk . slice ( n )
213
+ this . buffer [ 0 ] = chunk . slice ( n )
219
214
chunk = chunk . slice ( 0 , n )
220
215
this [ BUFFERLENGTH ] -= n
221
216
}
@@ -299,7 +294,7 @@ module.exports = class Minipass extends Stream {
299
294
if ( this [ OBJECTMODE ] )
300
295
this [ BUFFERLENGTH ] -= 1
301
296
else
302
- this [ BUFFERLENGTH ] -= this . buffer . head . value . length
297
+ this [ BUFFERLENGTH ] -= this . buffer [ 0 ] . length
303
298
}
304
299
return this . buffer . shift ( )
305
300
}
@@ -536,7 +531,7 @@ module.exports = class Minipass extends Stream {
536
531
this [ DESTROYED ] = true
537
532
538
533
// throw away all buffered data, it's never coming out
539
- this . buffer = new Yallist ( )
534
+ this . buffer . length = 0
540
535
this [ BUFFERLENGTH ] = 0
541
536
542
537
if ( typeof this . close === 'function' && ! this [ CLOSED ] )
0 commit comments