|
|
|
|
|
by splintercell
3198 days ago
|
|
I made my case against the compose in the post. Composing xor, rofl, lol isn't any better (esp in terms of readability) than it is individual maps. What would be better is this: const makeHilarious = compose(rofl, lol, xor);
things
|> pluck('bar')
|> map(makeHilarious)
|> reduce(differenceWith('id')
|
|