Created
May 23, 2019 06:39
-
-
Save henhal/90bbf9524bf3abc5cacc751810d49136 to your computer and use it in GitHub Desktop.
Convert ALL_CAPS to camelCase
This file contains 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 allCaps2CamelCase = s => s.toLowerCase().replace(/(_.?)/g, ([,c]) => c ? c.toUpperCase() : '') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment