Skip to content

Instantly share code, notes, and snippets.

@lxe
Created March 6, 2013 16:29
Show Gist options
  • Save lxe/5100631 to your computer and use it in GitHub Desktop.
Save lxe/5100631 to your computer and use it in GitHub Desktop.
Camels
module.exports = {
deCamel: function (camelCaseKey) {
return camelCaseKey.replace(/([^_])([A-Z])/g, function(l0, l1, l2) {
return l1 + '_' + l2.toLowerCase()
});
},
reCamel: function (underscores_key) {
return underscores_key.replace(/([^_])_([^A-Z])/g, function(l0, l1, l2) {
return l1 + l2.toUpperCase()
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment