Skip to content

Instantly share code, notes, and snippets.

@MikeDigitize
Created July 15, 2016 20:56
Show Gist options
  • Save MikeDigitize/bb8b0bf83eb3729539c2f8733071a11b to your computer and use it in GitHub Desktop.
Save MikeDigitize/bb8b0bf83eb3729539c2f8733071a11b to your computer and use it in GitHub Desktop.
const capitalise = f => replace(/\b[a-z]/g, f => f.toUpperCase());
const lowercaseilise = f => replace(/\b[A-Z]/g, f => f.toLowerCase());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment