Last active
February 11, 2018 16:18
-
-
Save rayfranco/abbe6b9dcf66282aa5bc71fbd7b105c8 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
module.exports = (string) => { | |
return string.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase() | |
} |
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
module.exports = (string) => { | |
return string.replace(/-([a-z])/g, (a, b) => b.toUpperCase()) | |
} |
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
module.exports = (string) => { | |
return string.replace(/(?:^|-)([a-z])/g, (a, b) => b.toUpperCase()) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment