Skip to content

Instantly share code, notes, and snippets.

@Prosen-Ghosh
Created August 29, 2017 13:16
Show Gist options
  • Save Prosen-Ghosh/a4d72a8a526389bdf157d87b90f29eef to your computer and use it in GitHub Desktop.
Save Prosen-Ghosh/a4d72a8a526389bdf157d87b90f29eef to your computer and use it in GitHub Desktop.
Convert Camel case to dash
String.prototype.camelToDash = function(){
return this[0].toLowerCase() + this.slice(1).replace(/[A-Z]/g,function(w){
return '-'+ w.toLowerCase();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment