UNPKG

@platformos/pos-cli

Version:
9 lines (6 loc) 195 B
import unzipper from 'unzipper'; async function unzip(filePath, outputFilePath) { return unzipper.Open.file(filePath) .then(d => d.extract({ path: outputFilePath })); } export { unzip };