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

I dig laziness, but why is `forEach` lazy? That's the only one that invokes immediately in libraries like Lazy.js.
It's only lazy if it's part of a chain
Chaining is deferred until `value()` is implicitly or explicitly called. However shortcut fusion does not apply to `forEach`.
Thanks for the link, I was expecting a CHANGELOG file in the project.