File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -361,7 +361,7 @@ class Blob {
361361 if ( c . desiredSize <= 0 ) {
362362 // A manual backpressure check.
363363 if ( this . pendingPulls . length !== 0 ) {
364- // case of waiting pull finished (= not yet canceled)
364+ // A case of waiting pull finished (= not yet canceled)
365365 const pending = this . pendingPulls . shift ( ) ;
366366 pending . resolve ( ) ;
367367 }
Original file line number Diff line number Diff line change @@ -270,16 +270,16 @@ assert.throws(() => new Blob({}), {
270270} ) ( ) . then ( common . mustCall ( ) ) ;
271271
272272( async ( ) => {
273- const b = new Blob ( [ "A" , "B" , "C" ] ) ;
273+ const b = new Blob ( [ 'A' , 'B' , 'C' ] ) ;
274274 const stream = b . stream ( ) ;
275275 const chunks = [ ] ;
276276 const decoder = new TextDecoder ( ) ;
277277 await stream . pipeTo ( new WritableStream ( {
278278 write ( chunk ) {
279- chunks . push ( decoder . decode ( chunk , { stream : true } ) ) ;
279+ chunks . push ( decoder . decode ( chunk , { stream : true } ) ) ;
280280 }
281281 } ) ) ;
282- assert . strictEqual ( chunks . join ( "" ) , " ABC" ) ;
282+ assert . strictEqual ( chunks . join ( '' ) , ' ABC' ) ;
283283} ) ( ) . then ( common . mustCall ( ) ) ;
284284
285285( async ( ) => {
You can’t perform that action at this time.
0 commit comments