db-vendo-client/parse/nearby.js
Jannis R fb43a4e43b
code style 👕
- rename variables
- more consistent indentation
- give crucial anonymous functions a name
- add more TODOs
2017-11-12 00:05:32 +01:00

16 lines
289 B
JavaScript

'use strict'
const parseLocation = require('./location')
// todo: remarks
// todo: lines
// todo: what is s.pCls?
// todo: what is s.wt?
// todo: what is s.dur?
const parseNearby = (n) => {
const res = parseLocation(n)
res.distance = n.dist
return res
}
module.exports = parseNearby