Effect method equivalent to Haskell's `>>` operator for chaining promises

Is there an equivalent Effect method to something like haskells >> operator? I basically have a Promise that I am executing, then after that I want to run a different promise, but discard that result and return the original promises result. I know i can just do it with something like flatMap or in a generator style, but was curious if that method existed
Was this page helpful?