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

15 lines
276 B
JavaScript

// todo: remarks
// todo: lines
// todo: what is s.pCls?
// todo: what is s.wt?
// todo: what is s.dur?
const parseNearby = (ctx, n) => { // n = raw nearby location
const res = ctx.profile.parseLocation(ctx, n)
res.distance = n.dist
return res
}
export {
parseNearby,
}