db-vendo-client/p/dbweb/location-filter.js

10 lines
189 B
JavaScript

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