Search Docs
function snakeToCamel(str) { return str.replace(/([-_])([a-z])/g, function(match, letter) { return letter.toUpperCase(); }); }