db-vendo-client/format/station.js

17 lines
282 B
JavaScript
Raw Permalink Normal View History

2017-11-12 00:53:34 +01:00
'use strict'
const formatLocationIdentifier = require('./location-identifier')
const formatStation = (id) => {
return {
type: 'S', // station
// todo: name necessary?
lid: formatLocationIdentifier({
A: '1', // station?
L: id
})
}
}
2017-11-12 00:53:34 +01:00
module.exports = formatStation