mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 07:09:35 +02:00
13 lines
247 B
JavaScript
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,
|
|
};
|