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

13 lines
247 B
JavaScript

const formatLocationsReq = (ctx, query) => {
const {profile, opt} = ctx;
return {
typ: profile.formatLocationFilter(opt.stops, opt.addresses, opt.poi),
suchbegriff: query,
limit: opt.results,
};
};
export {
formatLocationsReq,
};