Y
Hacker News
new
|
ask
|
show
|
jobs
by
olivierkaisin
4156 days ago
See release notes and changelog: -
https://github.com/lodash/lodash/releases/tag/3.0.0
-
https://github.com/lodash/lodash/wiki/Changelog
2 comments
bsimpson
4156 days ago
I dig laziness, but why is `forEach` lazy? That's the only one that invokes immediately in libraries like Lazy.js.
link
quadratini
4156 days ago
It's only lazy if it's part of a chain
link
jdd
4155 days ago
Chaining is deferred until `value()` is implicitly or explicitly called. However shortcut fusion does not apply to `forEach`.
link
riquito
4156 days ago
Thanks for the link, I was expecting a CHANGELOG file in the project.
link