1
0
Fork 0
tooty/src/Util.elm

7 lines
141 B
Elm

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