10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-23 19:27:42 +02:00
QUESTDB_website/static/js/getPublis.js

7 lines
331 B
JavaScript
Raw Normal View History

2020-02-15 11:19:36 +01:00
async function getPublis() {
const text = await getTextFromFileUrlAsync("/data/publis.yaml")
const myYaml=jsyaml.load(text);
myYaml.sets= ((myYaml.sets===null) ? new Map() : new Map(Object.entries(myYaml.sets)));
myYaml.others=((myYaml.others===null) ? new Map() : new Map(Object.entries(myYaml.others)));
return myYaml
}