Created
March 6, 2013 16:29
-
-
Save lxe/5100631 to your computer and use it in GitHub Desktop.
Camels
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
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