db-vendo-client/format/station.js

16 lines
257 B
JavaScript
Raw Normal View History

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