Unzips a file and returns a promise that resolves when the unzip operation is complete.
The options for the unzip operation.
The path to the zip file to be unzipped.
The path to the output directory.
import { unzipFile } from "nsuite";await unzipFile({ pathFile: pathDistZip, pathOutput: pathOutputDirectory,}); Copy
import { unzipFile } from "nsuite";await unzipFile({ pathFile: pathDistZip, pathOutput: pathOutputDirectory,});
Unzips a file and returns a promise that resolves when the unzip operation is complete.