Skip to content

Instantly share code, notes, and snippets.

@sandropaganotti-zz
Created February 12, 2014 17:36
Show Gist options
  • Save sandropaganotti-zz/8960508 to your computer and use it in GitHub Desktop.
Save sandropaganotti-zz/8960508 to your computer and use it in GitHub Desktop.
function decamelcase(str){
return str.replace(/([A-Z])/g, function(str,m1){ return '-' + m1.toLowerCase(); }).replace(/^ms-/,'-ms-');
}
Modernizr.prefixed('transform')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment