Eike Kettner 831cd8b655 Initial version.
Features:

- Upload PDF files let them analyze

- Manage meta data and items

- See processing in webapp
2019-09-21 22:02:36 +02:00

10 lines
247 B
Elm

module Util.Contact exposing (..)
import Api.Model.Contact exposing (Contact)
toString: List Contact -> String
toString contacts =
List.map (\c -> c.kind ++ ": " ++ c.value) contacts
|> List.intersperse ", "
|> String.concat