Hacker News new | ask | show | jobs
by pharmakom 997 days ago
Still prefer

    pipe([
      f, 
      g,
      h,
    ])(123);
Or, you know, a functional language.
2 comments

That's not `pipe`, that's `compose` or `flow`.
That looks more like compose rather than apply (i.e pipe) to me