camel2hyphen.js 216 B

123456789
  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;