10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-08-25 13:41:50 +02:00
QUESTDB_website/static/js/indexDB.js

10 lines
362 B
JavaScript

class indexDB {
static async loadAsync() {
var db = new indexDB
const text = await getTextFromFileUrlAsync("/data/index.yaml")
const myYaml = jsyaml.load(text);
db.sets = ((myYaml.sets === null) ? new Map() : new Map(Object.entries(myYaml.sets)));
db.others = ((myYaml.others === null) ? [] : Array.from(myYaml.others));
return db
}
}