mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 07:09:35 +02:00
11 lines
196 B
JavaScript
11 lines
196 B
JavaScript
const parsePrognosisType = (_, progType) => {
|
|
return {
|
|
PROGNOSED: 'prognosed',
|
|
CALCULATED: 'calculated',
|
|
// todo: are there more?
|
|
}[progType] || null;
|
|
};
|
|
|
|
export {
|
|
parsePrognosisType,
|
|
};
|