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.
1 parent 372b8ec commit 2eb9628Copy full SHA for 2eb9628
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