db-vendo-client/format/station.js
Jannis R 339d64e901
convert to ESM 💥📝
2022-11-18 19:20:03 +01:00

16 lines
264 B
JavaScript

import {formatLocationIdentifier} from './location-identifier.js'
const formatStation = (id) => {
return {
type: 'S', // station
// todo: name necessary?
lid: formatLocationIdentifier({
A: '1', // station?
L: id
})
}
}
export {
formatStation,
}