mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-11-04 13:13:55 +01:00
10 lines
329 B
JavaScript
10 lines
329 B
JavaScript
async function loadAllData() {
|
|
dic = {
|
|
abs: [],
|
|
fluo: [],
|
|
};
|
|
dic.abs = await Promise.all(getAbsFilesName().map((f) => VertDataFile.loadAsync(f,VertExcitationKinds.Absorbtion)))
|
|
dic.fluo = await Promise.all(getFluoFilesName().map((f) => VertDataFile.loadAsync(f,VertExcitationKinds.Fluorescence)))
|
|
return dic;
|
|
}
|