We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 372b8ec + 2eb9628 commit 98ab726Copy full SHA for 98ab726
README.md
@@ -175,7 +175,7 @@ const toUpperCase = function(x) { return x.toUpperCase(); };
175
const exclaim = function(x) { return x + '!'; };
176
const moreExclaim = function(x) { return x + '!!!!!'; };
177
178
-const reallyAngry = compose(exclaim, (toUpperCase, moreExclaim));
+const reallyAngry = compose(exclaim, compose(toUpperCase, moreExclaim));
179
180
reallyAngry("stop this");
181
// STOP THIS!!!!!!
0 commit comments