Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Tim Morgan http://timmorgan.org

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

selector-case to camelCase in JavaScript

   1  
   2  var camel = 'border-right-color'.replace(/\-(.)/g, function(m, l){return l.toUpperCase()});

camelCase to selector-case in JavaScript

   1  
   2  var selector = 'borderRightColor'.replace(/([A-Z])/g, '-$1').toLowerCase();
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS