Aleksandr Krivoshchekov
                                            Aleksandr Krivoshchekov
                                        
                                    @flying-sheep ``` coffee a(b ,c) # or a \ b , c ```
Hi, @alvaropinot ! In fact, this plugin [babel-plugin-syntax-pipeline](https://github.com/SuperPaintman/babel-plugin-syntax-pipeline) is a [monkey patch](https://github.com/SuperPaintman/babel-plugin-syntax-pipeline/blob/master/src/index.js#L27-L35) (aka decorator). Maybe something has changed in the babylon API
I'll try to update the Babilon in tests later.
So, I don't fully understand what you mean. [Example in a proposal](https://github.com/tc39/proposal-pipeline-operator#introduction)
Yeah, that's right. These ways are equivalent: **Calling in calling**: ```js let log = []; function f() { log.push("f") } function g() { log.push("g") } f() |> g console.log(log) //...
Oh, I understood what you mean, but I didn't find an opinion on this case in proposal. I think, you'd better ask this question in proposal repo: https://github.com/tc39/proposal-pipeline-operator Please let...