mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-11-04 21:24:00 +01:00
7 lines
331 B
JavaScript
7 lines
331 B
JavaScript
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
|
|
} |