1
0
Fork 0
tooty/src/Util.elm

7 lines
141 B
Elm
Raw Normal View History

2017-04-25 14:27:15 +00:00
module Util exposing (..)
replace : String -> String -> String -> String
replace from to str =
String.split from str |> String.join to