close()

in src/io/xpi.ts [230:240]


  close() {
    if (this.autoClose) {
      return;
    }

    if (this.zipfile) {
      // According to the yauzl docs, it is safe to call `close()` multiple
      // times so we don't check `isOpen` here.
      this.zipfile.close();
    }
  }