(outline, borders, path)
| 50 | } |
| 51 | |
| 52 | export function prepareMesh(outline, borders, path) { |
| 53 | return outline && borders |
| 54 | ? { |
| 55 | outline: { ...outline, rsmKey: "outline", svgPath: path(outline) }, |
| 56 | borders: { ...borders, rsmKey: "borders", svgPath: path(borders) }, |
| 57 | } |
| 58 | : {} |
| 59 | } |
| 60 | |
| 61 | export function prepareFeatures(geographies, path) { |
| 62 | return geographies |
no outgoing calls
no test coverage detected
searching dependent graphs…