From f6852a002d1dbb8e39eb07c5e244dd37f47a87b9 Mon Sep 17 00:00:00 2001 From: taskylizard <75871323+taskylizard@users.noreply.github.com> Date: Sun, 30 Jul 2023 16:25:13 +0200 Subject: [PATCH] [skip ci] oops Signed-off-by: taskylizard <75871323+taskylizard@users.noreply.github.com> --- test.ts | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 test.ts diff --git a/test.ts b/test.ts deleted file mode 100644 index 890c53b..0000000 --- a/test.ts +++ /dev/null @@ -1,14 +0,0 @@ -import fs from "fs"; -import path from "path"; -import { getTableOfContents } from "./shared"; -function saveFile() { - return new Promise((rslv, rjct) => { - getTableOfContents( - fs.readFileSync("./docs/wiki/emulation.md", "utf8"), - ).then((foo) => { - console.log(JSON.stringify(foo, null, 2)); - }); - }); -} - -saveFile();