Skip to content

Instantly share code, notes, and snippets.

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/cd8353bdec0b119e91e83b0799ab5911 to your computer and use it in GitHub Desktop.
Save WaldoJeffers/cd8353bdec0b119e91e83b0799ab5911 to your computer and use it in GitHub Desktop.
import { compose, head, split, get } from 'conductor'
const character = {name: 'Luke Skywalker'}
const getFirstName = compose(head, split(' '), get('name'))
getFirstName(character) // 'Luke'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment