This would be my preferred syntax: status = greeting+"!" ~> capitalize ~> send
This would need 2 changes to JS:1: ~> being a pipe operator 2: Calling an async function from within an async function implies await Without 2, it would look like this: status = greeting+"!" ~> capitalize ~> await send
|
https://github.com/tc39/proposal-pipeline-operator