Move schemas to better location

This commit is contained in:
Dolan Miu
2021-09-30 00:36:28 +01:00
parent 9ba1c233dc
commit d1837651f8
39 changed files with 79 additions and 79 deletions

View File

@ -0,0 +1,10 @@
import * as unzipper from "unzipper";
const main = async () => {
const zip = await unzipper.Open.file("My Document.docx");
await zip.extract({
path: "build/extracted-doc",
});
};
main();