10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-08-25 13:41:50 +02:00
This commit is contained in:
scemama 2020-12-07 10:12:16 +00:00
parent aa95622408
commit 9c5835e217
4 changed files with 50 additions and 30 deletions

File diff suppressed because one or more lines are too long

View File

@ -14,5 +14,5 @@ sets:
- null
QUEST#5:
- null
others:
reviews:
- 10.1021/acs.jpclett.0c00014

View File

@ -10,6 +10,7 @@ class indexDB {
const myYaml = jsyaml.load(text);
db.sets = ((myYaml.sets === undefined) ? new Map() : new Map(Object.entries(myYaml.sets)));
db.others = ((myYaml.others === undefined) ? [] : Array.from(myYaml.others));
db.reviews = ((myYaml.reviews === undefined) ? [] : Array.from(myYaml.reviews));
window.indexDB=db
return db
}

File diff suppressed because one or more lines are too long