blob: 705c552c2ec9873b8ecbfc91d05890f250f28f8f (
about) (
plain)
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 })
}
|