Skip to content

Instantly share code, notes, and snippets.

@gmmorris
Created November 28, 2016 16:20
Show Gist options
  • Save gmmorris/a3ea371bb84e3029f7850d52b14f6065 to your computer and use it in GitHub Desktop.
Save gmmorris/a3ea371bb84e3029f7850d52b14f6065 to your computer and use it in GitHub Desktop.
Snippet for "The magical quest for Componentisation"
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