Created
November 28, 2016 16:20
-
-
Save gmmorris/a3ea371bb84e3029f7850d52b14f6065 to your computer and use it in GitHub Desktop.
Snippet for "The magical quest for Componentisation"
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
const g = () => {} | |
const f = () => {} | |
// (g ∘ f )(x) = g(f(x)) | |
const h = (...args) => g(f(...args)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment