@ev-fns/gunzip

Async gunzip file

Usage no npm install needed!

<script type="module">
  import evFnsGunzip from 'https://cdn.skypack.dev/@ev-fns/gunzip';
</script>

README

@ev-fns/gunzip

Async gunzip file

Install

yarn add @ev-fns/gunzip

Usage

const { gunzip } = require("@ev-fns/gunzip");

const filename = "./backup_file.gz";

gunzip(filename).then(() => {
  console.log("gunzip finished");
});