mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-23 10:58:26 +00:00
19 lines
373 B
Elm
19 lines
373 B
Elm
{-
|
|
Copyright 2020 Eike K. & Contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-}
|
|
|
|
|
|
module Util.Address exposing (toString)
|
|
|
|
import Api.Model.Address exposing (Address)
|
|
|
|
|
|
toString : Address -> String
|
|
toString a =
|
|
[ a.street, a.zip, a.city, a.country ]
|
|
|> List.filter (String.isEmpty >> not)
|
|
|> List.intersperse ", "
|
|
|> String.concat
|