pismenkovani/index.ts
2025-02-01 16:53:12 +01:00

14 lines
251 B
TypeScript

import { glyphsToPdf } from "./pdf.ts";
import { writeFile } from "node:fs/promises";
await writeFile(
"./out.pdf",
await glyphsToPdf("normal", [
["🐾", 0],
["A", 0],
["H", 0],
["O", 0],
["J", 0],
["❗️", 0],
])
);