Skip to content

Instantly share code, notes, and snippets.

@WaldoJeffers
Created May 22, 2018 21:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WaldoJeffers/79e591b5ac00ab9b63c299c1e71e1e2a to your computer and use it in GitHub Desktop.
Save WaldoJeffers/79e591b5ac00ab9b63c299c1e71e1e2a to your computer and use it in GitHub Desktop.
import { map } from 'conductor'
const numbers = [1, 2, 3]
const add1 = x => x + 1
map(add1)(numbers) // == map(add1, numbers) == [2, 3, 4]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment