mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 15:19:35 +02:00
13 lines
157 B
JavaScript
13 lines
157 B
JavaScript
|
'use strict'
|
||
|
|
||
|
const formatStopReq = (ctx, stopRef) => {
|
||
|
return {
|
||
|
meth: 'LocDetails',
|
||
|
req: {
|
||
|
locL: [stopRef]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = formatStopReq
|