db-vendo-client/format/location-filter.js
2024-12-07 18:29:16 +00:00

10 lines
191 B
JavaScript

const formatLocationFilter = (stops, addresses, poi) => {
if (!addresses && !poi) { // TODO other combos?
return 'HALTESTELLEN';
}
return 'ALL';
};
export {
formatLocationFilter,
};