10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2025-01-13 06:28:26 +01: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 - null
QUEST#5: QUEST#5:
- null - null
others: reviews:
- 10.1021/acs.jpclett.0c00014 - 10.1021/acs.jpclett.0c00014

View File

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

File diff suppressed because one or more lines are too long