publishing v1 of action

This commit is contained in:
Paul Merlin
2019-09-21 16:11:55 +02:00
parent 91baa89272
commit 2d5ca45eab
569 changed files with 61688 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
const unzipper = require('./unzip');
async function main() {
const zip = await unzipper.Open.file('./scorm-file-test.zip');
await zip.extract({path:'/home/zjonsson/git/node-unzipper/tmp'});
console.log('done');
}
main().then(console.log,console.log)