aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xhelper.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/helper.js b/helper.js
index 31a4f2f..795ac50 100755
--- a/helper.js
+++ b/helper.js
@@ -23,8 +23,8 @@ async function ssvToObj(ssv) {
const obj = {};
const lines = ssv.split("\n").slice(1, -1);
for (const line of lines) {
- const [t, u, c] = line.split(";");
- const str = `${t} zur 10-Jahres Prognose: ${c}`;
+ const [t, u, c, p] = line.split(";");
+ const str = p === "t" ? `${c} ~ ${t}` : `${t} zur 10-Jahres Prognose: ${c}`;
if (obj.hasOwnProperty(u)) obj[u].push(str);
else obj[u] = [str];
}