Created
July 17, 2018 12:10
-
-
Save rajatk16/8ef9ad69754d1e0fc7522be6cc556493 to your computer and use it in GitHub Desktop.
This file contains 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
(function (root) { | |
const compose = (f, g) => x => f (g (x)); | |
root.helpers = { | |
compose, | |
}; | |
}) (window); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment