Skip to content

Instantly share code, notes, and snippets.

@marktellez
Created October 14, 2019 17:14
Show Gist options
  • Save marktellez/53719f87c11a8e07f6f050f556fec020 to your computer and use it in GitHub Desktop.
Save marktellez/53719f87c11a8e07f6f050f556fec020 to your computer and use it in GitHub Desktop.
function toSnakeCase(s) {
return s.split("_").map((s, i) => i > 0 ? s.slice(0,1).toUpperCase() + s.slice(1, s.length) : s).join("")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment