Skip to content

Instantly share code, notes, and snippets.

@danielpetrov
Created January 17, 2017 09:40
Show Gist options
  • Select an option

  • Save danielpetrov/340e830cc68c78f762d6f967c509bac7 to your computer and use it in GitHub Desktop.

Select an option

Save danielpetrov/340e830cc68c78f762d6f967c509bac7 to your computer and use it in GitHub Desktop.
//not pointfree because we mention the data: word
const snakeCase = word => word.toLowerCase().replace(/\s+/ig, '_')
//pointfree
const snakeCase = compose(replace(/\s+/ig, '_'), toLowerCase)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment