Echo JS 0.11.0

<~>

GrosSacASacs comments

GrosSacASacs 1167 days ago. link 3 points
An eye for an eye and the world goes blind.

We all make make mistakes.

Forgive and move on.
GrosSacASacs 1711 days ago. link 1 point
The generator pattern can be used without the generator function syntax.
GrosSacASacs 2181 days ago. link 2 points
Corrections:

.trim() is not new but only .trimStart() and .trimEnd() are

error.message will stay the same otherwise it would be a huge breaking change for many  packages, error.code is getting added however to many places.

prototype.toString(), which now returns exact slices of source code text, and mitigations for side-channel vulnerabilities to prevent information leaks.


is actually 

Function.prototype.toString(), which now returns exact source including the comment in between function and name of the function.
GrosSacASacs 2214 days ago. link 1 point
As an alternative to [].forEach loops [].some and [].every can also be used to terminate early by returning true or false.
GrosSacASacs 2255 days ago. link 1 point
Note that Promise.all does not technically execute promises inside, it just returns a promise, that resolves when the array of promises all resolve, or one rejects.
[more]