db-vendo-client/format/location-filter.js
Kristjan ESPERANTO 66d9fb5194
apply linting rules
follow-up of 228c7253
2024-02-10 16:50:12 +01:00

14 lines
233 B
JavaScript

const formatLocationFilter = (stops, addresses, poi) => {
if (stops && addresses && poi) {
return 'ALL';
}
return (
(stops ? 'S' : '')
+ (addresses ? 'A' : '')
+ (poi ? 'P' : '')
);
};
export {
formatLocationFilter,
};