import { BlobReader, BlobWriter, TextReader, TextWriter, ZipReader, ZipWriter, } from "https://deno.land/x/zipjs/index.js"; // ---- // Write the zip file // ---- // Creates a BlobWriter object where the zip content will be written. const zipFileWriter = new BlobWriter(); // Creates a TextReader object storing the text of the entry to add in the zip // (i.e. "Hello world!"). const helloWorldReader