Files
HowBadIsMyBatch/docs/HistoDescrsProvider.js
frankknoll de917ac2b7 refactoring
2023-01-30 23:54:17 +01:00

11 lines
417 B
JavaScript

class HistoDescrsProvider {
static getHistoDescrsForBatchcode(batchcode) {
return fetch(`data/histograms/${batchcode}.json`)
.then(response => response.json())
.then(histoDescrs => {
histoDescrs.histograms.sort((histoDescr1, histoDescr2) => histoDescr1.batchcodes.length - histoDescr2.batchcodes.length);
return histoDescrs;
});
}
}