You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, one suggestion I have is to use elm-units instead or having your own API for dealing with durations. Then you can just have after : Duration -> msg -> Cmd msg, sequence : List ( Duration, msg ) -> Cmd msg, and sequenceIf : Bool -> List ( Duration, msg ) -> Cmd msg and anyone familiar with elm-units won't need to relearn how to specify what time units they want or do extra conversions if they are already using elm-units for other stuff.
The text was updated successfully, but these errors were encountered:
elm-units definitely has a nice api! I think given that elm-delay is so tiny it would be a shame to force others to use this as a peer dependency, particularly if their use case is very simple
Hi, one suggestion I have is to use elm-units instead or having your own API for dealing with durations. Then you can just have
after : Duration -> msg -> Cmd msg
,sequence : List ( Duration, msg ) -> Cmd msg
, andsequenceIf : Bool -> List ( Duration, msg ) -> Cmd msg
and anyone familiar with elm-units won't need to relearn how to specify what time units they want or do extra conversions if they are already using elm-units for other stuff.The text was updated successfully, but these errors were encountered: