mirror of
https://github.com/abap2xlsx/abap2xlsx.git
synced 2025-05-05 05:04:11 +08:00
9 lines
312 B
JavaScript
9 lines
312 B
JavaScript
import {initializeABAP} from "../output/init.mjs";
|
|
import {cl_excel_test} from "../output/cl_excel_test.clas.mjs";
|
|
import * as fs from "node:fs";
|
|
|
|
await initializeABAP();
|
|
|
|
const test = new cl_excel_test();
|
|
const buf = Buffer.from((await test.run()).get().toLowerCase(), "hex");
|
|
fs.writeFileSync("foo.xlsx", buf); |