Skip to content

Instantly share code, notes, and snippets.

@syzer
Created June 13, 2018 16:29
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 syzer/67420c40f1425fc51e3d9ae38bd991a3 to your computer and use it in GitHub Desktop.
Save syzer/67420c40f1425fc51e3d9ae38bd991a3 to your computer and use it in GitHub Desktop.
When you wanna do replace but you are `point-free`
const a = 'yello world'
const upperFirst = pipe(
juxt([pipe(head, toUpper), tail]),
join(''))
upperFirst(a)
// => 'Yello world'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment