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