Closed
Description
In 1.11.0 the follow shorthand has been broken.
(result[groupByIndex] or =[]).push(item)
Previously this would have compiled to
(result[groupByIndex] || (result[groupByIndex] = [])).push(item);
Now it throws a compilation error. Its not a major issue and a quick fix on our side but I wanted to bring it up to make sure you were aware of it.
Activity