mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 07:09:35 +02:00
10 lines
189 B
JavaScript
10 lines
189 B
JavaScript
const formatLocationFilter = (stops, addresses, poi) => {
|
|
if (!addresses && !poi) { // TODO other combos?
|
|
return 'HALTESTELLEN';
|
|
}
|
|
return 'ALL';
|
|
};
|
|
|
|
export {
|
|
formatLocationFilter,
|
|
};
|