tooty/src/Util.elm
2017-04-25 16:27:15 +02:00

7 lines
141 B
Elm

module Util exposing (..)
replace : String -> String -> String -> String
replace from to str =
String.split from str |> String.join to