Created
August 23, 2017 09:21
-
-
Save Dafrok/d073ea792b39a2c01283e15cdb85ee9b to your computer and use it in GitHub Desktop.
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
| const flatten = (f => | |
| (x => f(y => x(x)(y))) | |
| (x => f(y => x(x)(y))) | |
| )(fn => data => data.reduce((ary, item) => ary.concat(item.length ? fn(item) : item), [])) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment