Created
February 17, 2020 20:05
-
-
Save bobmacneal/e46cb043ec72ebd671e5828bb9ba242f to your computer and use it in GitHub Desktop.
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
export const camelCaseToSnakeCase = (item) => { | |
return item.replace(/[\w]([A-Z])/g, (m) => { | |
return m[0] + '_' + m[1] | |
}).toLowerCase() | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment