aboutsummaryrefslogtreecommitdiff
path: root/client-web/scripts/reformat_json.ts
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-03-22 14:27:25 +0100
committermetamuffin <metamuffin@disroot.org>2025-03-22 14:27:25 +0100
commit5d4cb7864dc3ca19669877def6c298eb96d19b16 (patch)
tree92444bfd31c9080e8c09aa7368e3f6cb4156ed35 /client-web/scripts/reformat_json.ts
parent2f5d47d21dfc308c1b930cf45e13b34445d3a8e5 (diff)
downloadkeks-meet-5d4cb7864dc3ca19669877def6c298eb96d19b16.tar
keks-meet-5d4cb7864dc3ca19669877def6c298eb96d19b16.tar.bz2
keks-meet-5d4cb7864dc3ca19669877def6c298eb96d19b16.tar.zst
new translation system
Diffstat (limited to 'client-web/scripts/reformat_json.ts')
-rw-r--r--client-web/scripts/reformat_json.ts16
1 files changed, 0 insertions, 16 deletions
diff --git a/client-web/scripts/reformat_json.ts b/client-web/scripts/reformat_json.ts
deleted file mode 100644
index 35fc1dd..0000000
--- a/client-web/scripts/reformat_json.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-const decoder = new TextDecoder();
-let text = ""
-for await (const chunk of Deno.stdin.readable) {
- text += decoder.decode(chunk);
-}
-
-for (const ob of text.split("\n")) {
- if (!ob.length) continue
- console.log(JSON.stringify(JSON.parse(ob), null, 4));
-}
-
-