Created
April 7, 2013 23:11
-
-
Save edinella/5333007 to your computer and use it in GitHub Desktop.
Converts a space separated string to camel case
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
| function toCamelCase(str) { | |
| return str.toLowerCase().replace(/(?:(^.)|(\s+.))/g, function(match) { | |
| return match.charAt(match.length-1).toUpperCase(); | |
| }); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment