Skip to content

Instantly share code, notes, and snippets.

@paitonic
Last active April 18, 2020 14:24
Show Gist options
  • Save paitonic/4bc06539207e67250db2f3bdfb522677 to your computer and use it in GitHub Desktop.
Save paitonic/4bc06539207e67250db2f3bdfb522677 to your computer and use it in GitHub Desktop.
to camel case
toCamelCase = (value) => value.toLowerCase().replace(/\s\w/, (match) => match.slice(1).toUpperCase());
// 'Blue Grey' -> 'blueGrey'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment