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