db-vendo-client/parse/nearby.js

15 lines
270 B
JavaScript
Raw Normal View History

2017-11-11 22:35:41 +01:00
'use strict'
// todo: remarks
// todo: lines
// todo: what is s.pCls?
// todo: what is s.wt?
// todo: what is s.dur?
2017-11-12 01:23:34 +01:00
const parseNearby = (profile, n) => {
const res = profile.parseLocation(profile, n)
res.distance = n.dist
return res
2017-11-11 22:35:41 +01:00
}
module.exports = parseNearby