Closed
Description
From @GeoffreyBooth on 2017-05-30 03:10
CoffeeScript’s spread syntax was adopted into ES2015, but they flipped the position of the dots from the right to the left:
foo args... # foo(...args);
We can’t flip them to the left in CoffeeScript without needlessly breaking lots of legacy code, but what about allowing the dots on either side?
foo args... # foo(...args);
# or
foo ...args # foo(...args);
Metadata
Metadata
Assignees
Labels
No labels