Created
April 20, 2018 07:50
-
-
Save vldvel/516b5da0e9b14bc844678964c21d8968 to your computer and use it in GitHub Desktop.
lodash-composition
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
reduce(map(filter(users, ({ active }) => active), ({ age }) => (age + 100) % 27), (p, c) => c > 20 ? p.concat(c) : p, []); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You know you can use the _.chain(users) and then apply all of your functions in a more fluent format?