jfmengels / elm-review-simplify

Provides elm-review rules to simplify your Elm code
https://package.elm-lang.org/packages/jfmengels/elm-review-simplify/latest/
BSD 3-Clause "New" or "Revised" License
19 stars 9 forks source link

Replace composition in a pipeline #116

Closed jfmengels closed 1 year ago

jfmengels commented 1 year ago

This adds the following transformations:

a |> f >> g
--> a |> f |> g

a |> f >> g >> h
--> a |> f |> g |> h

a |> (f >> g)
--> a |> f |> g