Nathan Wall (2013-07-28T04:23:41.000Z)
> Why do arrow functions require a parameter list and a body? That is, none of the following are allowed:
>
> - `=> foo`
> - `bar =>`
> - `=>`
>
> Instead you need the more-verbose
>
> - `() => foo`
> - `bar => {}`
> - `() => {}`
>
> Any chance of relaxing this a bit?


+1
domenic at domenicdenicola.com (2013-07-31T15:01:15.280Z)
+1