Just a side-note here:
When I see code snippets like
```js
return builder.add(
builder.max(0, x),
builder.mul(
builder.constant(options.alpha),
builder.sub(
builder.exp(builder.min(builder.constant(0), x)),
builder.constant(1))));
```
I am wondering if that can be made more readable when/if the pipeline operator lands in JavaScript https://github.com/tc39/proposal-pipeline-operator
It might make sense to look through examples like this as see if these fit well with pipeline operator or any change should be made
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3ctag/design-reviews/issues/570#issuecomment-920621844