Move schemas to better location
This commit is contained in:
10
scripts/extract-document.ts
Normal file
10
scripts/extract-document.ts
Normal 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();
|
Reference in New Issue
Block a user