exports.handler = function()

in 5-unzip/unzipFiles/app.js [24:29]


exports.handler = function (eventObject, context) {

	fs.createReadStream(`${efsPath}/${inputFile}`)
		.pipe(unzipper.Extract({ path: `${efsPath}/${destinationDir}` }))

}