Awesome
return.macro
Example
import _return from "return.macro"
const value = getValue() ?? _return()
const [left, right] = getValue() ?? _return(false)
const { node } = getValue() ?? _return()
desugars to
const value = getValue();
if (value == null) return;
const [left, right] = getValue();
if (left == null || right == null) return false;
const { node } = getValue();
if (node == null) return;