justo-plugin-unzip
v0.1.1
Published
Plugin to unzip files.
Maintainers
Readme
Plugin to unzip files.
Proudly made with ♥ in Valencia, Spain, EU.
Install
npm install justo-plugin-unzipUse
const unzip = require("justo-plugin-unzip");The unzip task is as follows:
unzip(justoOpts, opts : object)The opts parameter:
src(string). File to unzip.dst(string). Directory where to unzip.
Example:
const unzip = require("justo-plugin-unzip");
unzip("Unzip file.zip", {
src: "file.zip",
dst: "unzip"
});