Piping Javascript

Javascript has had arrow functions (() => true) for a while now. Introduced as part of ES6 (The 2015 edition of the ECMAScript spec), They allow developers to create easy anonymous functions that use their parent's scoped this value. I'd argue that it is one of the most important changes ever made to Javascript in the realm of code readability (followed closely by promises for helping to solve Callback Hell), However, there is currently a stage 2 proposal specification that I believe has the potential to be just as, if not, more impactful in the world of readable code.

The pipe operator (|>) offers us the ability to chain consecutive functions by passing the output of each function into the next using the |> characters. Also referred to as a pipline expression, its use may be familiar to those experienced in terminal usage.

There's no question that in the above example, it's easier to read the version of the code that uses the pipe operator, but why is this being suggested?

The Spec indicates that this addition was inspired by the pipe operator in Hack after the State of JS 2020 survey indicated it was the 4th most frequent answer when asked "What is missing from the language?".

At the moment, there is currently two ways to perform consecutive function calls in JavaScript each with issues that make them less than perfect.

  • Nesting - Where you wrap each function call inside of another, with subsequent calls appearing closer to the outside. This is particularly hard to read due to subsequent calls being read prior to earlier functions when read left to right.
  • Chaining - Where subsequent functions are appended to previous ones via a . character. While much easier to read than nesting, chaining can only be used for functions that are methods of the return class/type of the previous function. Unlike piping, it also doesn't support literals, awaited promises, and arithmetic to be mixed in with the function calls.

The pipe operator by comparison is extremely flexible, allowing you to pass any expression into the next, using a placeholder value to indicate where the previous expression's output should be inserted. Although subject to change, in the current version of the documentation, the % character is used (I'm personally not a fan of this choice given its current use for modulus). This allows for all of the following examples to be valid.

While this isn't available in javascript right now as it's a stage 2 (experimental) feature of the language. The fact it was so highly requested in the 2020 language survey gives me hope that it will be passed soon.

If you'd like to give it a try today you can do so by making use of Babel to transpile down to current javascript standards using this plugin. Simply install the plugin on a npm project that has been set up with babel and add the following to your .babelrc.json file

To support the addition of the pipe operator in javascript, you should do some further reading of as well as star the github page of the proposal here. Let me know what your thoughts on the pipe operator are in the comments or by @ing me on twitter @mikevdev

Webmentions

What's this?

This site uses Webmentions to handle likes, comments and other interactions. To leave a comment, you can reply on Twitter, GitHub, or Reddit. While the site will count likes from any source, only twitter likes are currently displayed in the facepile above.