Echo JS 0.11.0

<~>

sylvainpv 2358 days ago. link 4 points
My own experience of mind-blowing one line of JavaScript is 
uncurry = Function.bind.bind(Function.call);

Now, the line of code in the article can be replaced by:
addressParts.map(uncurry(String.prototype.trim));

It took me hours to figure it out
manabu 2357 days ago. link 1 point
Wow, this is a whole different ball game.
bigopon 2358 days ago. link 3 points
Thanks. Reminds me to not try to be smart with my code too much. Just frustration for any maintainer