8 lines
245 B
JavaScript
8 lines
245 B
JavaScript
class CompanyByBatchcodeProvider {
|
|
|
|
static getCompany(batchcode) {
|
|
return fetch(`data/histograms/Global/${batchcode}.json`)
|
|
.then(response => response.json())
|
|
.then(histoDescrs => histoDescrs.Company);
|
|
}
|
|
} |