Created
July 15, 2016 20:56
-
-
Save MikeDigitize/bb8b0bf83eb3729539c2f8733071a11b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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