Rest
...expressions: any[]await e("1 + 2")(); // 3
const closing_balance = await e`
+ ${opening_balance}
+ ${sales}
- ${expenses}
`();
const F = await e`
* ${gravitational_constant}
* ${mass_a}
* ${mass_b}
/ ${Math.pow(distance, 2)}
`();
if (await e`
&& ${is_eligible}
&& (
|| ${is_of_age}
|| ${has_parental_consent}
)
`()) {}
const person = e`{
:first_name "John";
:last_name "Doe";
:age 27;
}`;
Generated using TypeDoc
Evaluates an expression.