Skip to content

Instantly share code, notes, and snippets.

@ihorkatkov
Created July 24, 2015 12:46
Show Gist options
  • Save ihorkatkov/c4dbfef7651fd4c97ca3 to your computer and use it in GitHub Desktop.
Save ihorkatkov/c4dbfef7651fd4c97ca3 to your computer and use it in GitHub Desktop.
[js] Camelize. Преобразует строки вида «my-short-string» в «myShortString».
function camelize(str) {
var arr = str.split('-');
for (var i = 1; i < arr.length; i++) {
arr[i]= arr[i][0].toUpperCase() + arr[i].slice(1);
}
str = arr.join('');
return str;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment