Skip to content

Instantly share code, notes, and snippets.

@my-slab
Created October 2, 2018 07:23
Show Gist options
  • Save my-slab/c6f74a93e1883b792678c2f47ffe3777 to your computer and use it in GitHub Desktop.
Save my-slab/c6f74a93e1883b792678c2f47ffe3777 to your computer and use it in GitHub Desktop.
cap.js
const capitalize = R.compose(
R.join(''),
R.juxt([
R.compose(
R.toUpper,
R.head
),
R.tail
])
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment