14:38
<jschoi>
A Babel contributor has opened a pull request for adding an optional pipe operator spelled as ?> to Babel. https://github.com/babel/babel/pull/14255
14:50
<Ashley Claymore>
only a little shame we can't do this:if (val ?> true) { ... , need to if (val != null) but some projects force always strict equality checks so then have to do if ((val ?? null) !== null)