Echo JS 0.11.0

<~>

nagyadam2092 682 days ago. link 2 points
Why do you need to use lodash's `filter`? `Array.prototype.filter` should suffice, so like
```
array.filter(el => !_.isNull(el));
```