db-vendo-client/format/location-filter.js

11 lines
189 B
JavaScript
Raw Normal View History

const formatLocationFilter = (stops, addresses, poi) => {
2024-12-07 18:29:16 +00:00
if (!addresses && !poi) { // TODO other combos?
2024-12-08 21:42:57 +00:00
return 'HALTESTELLEN';
}
2024-12-08 21:42:57 +00:00
return 'ALL';
};
2017-11-12 00:45:51 +01:00
2022-05-07 16:17:37 +02:00
export {
formatLocationFilter,
};