db-vendo-client/p/db/location-filter.js
2024-12-21 15:26:49 +00:00

10 lines
189 B
JavaScript

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