tomayac’s avatartomayac’s Twitter Archive—№ 16,638

  1. Streams 😎 js const c = (await fetch('streams.spec.whatwg.org/')).body .pipeThrough(new CompressionStream('gzip')); const h = await showSaveFilePicker({types: [{ description: 'GZIP File', accept: {'application/gzip': ['.gz']} }]}); c.pipeTo(await h.createWritable());