1 2 3 4 5 6 7
'use strict' const extractZip = require('extract-zip') module.exports = async function extractElectronZip (zipPath, targetDir) { await extractZip(zipPath, { dir: targetDir }) }