UNPKG

@teikei/map

Version:

Teikei map SPA component. Teikei is the software that powers ernte-teilen.org, a website that maps out Community-supported Agriculture in Germany.

9 lines (5 loc) 290 B
import _ from 'lodash' export const addressOf = ({ street, houseNumber }) => [street, houseNumber].join(' ').trim() export const cityOf = ({ postalCode, city }) => [postalCode, city].join(' ').trim() export const labelOf = item => _.compact([addressOf(item), cityOf(item)]).join(', ')