debugging File shim

This commit is contained in:
d98762625 2019-03-14 08:27:06 +00:00
parent 14d591caa1
commit d080c5dd14
7 changed files with 23 additions and 20 deletions

View file

@ -132,6 +132,8 @@ class Tar extends Operation {
tarball.writeBytes(input);
tarball.writeEndBlocks();
console.log('Tar bytes');
console.log(tarball.bytes);
return new File([new Uint8Array(tarball.bytes)], args[0]);
}