AUR0176
Last updated
Was this helpful?
AUR0176: Expression error: rest parameter must be last formal parameter in arrow function: "{{expression}}"
This error occurs when an arrow function uses a rest parameter (...args) that is not the last parameter.
<!-- ❌ Rest not last -->
<div textcontent.bind="(a, ...rest, b) => a"></div>Put the rest parameter last, or avoid arrow functions in bindings.
Last updated
Was this helpful?
Was this helpful?