You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

9 lines
216 B

  1. var camel2hyphen = function (str) {
  2. return str
  3. .replace(/[A-Z]/g, function (match) {
  4. return '-' + match.toLowerCase();
  5. })
  6. .toLowerCase();
  7. };
  8. module.exports = camel2hyphen;