Echo JS 0.11.0

<~>

timoxley 3614 days ago. link 2 points
Yep, this really was a downer in ES5, but note that it's now a near a non-issue in ES6 with arrow functions:

```js
n.map(val => parseInt(val));

n.forEach(val => console.log(val))

async.waterfall([
  next => new User(model).save(err => next(err)),
  (data, next) => {
    // MOAR CODE
  }
])

```
chris-l 3619 days ago. link 1 point
Hehe really nice. Lets see how useful turns to be.