Dashboard sipadu mbip
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.

hyphenate.js 219B

1234567891011
  1. "use strict";
  2. exports.__esModule = true;
  3. exports.default = hyphenate;
  4. var rUpper = /([A-Z])/g;
  5. function hyphenate(string) {
  6. return string.replace(rUpper, '-$1').toLowerCase();
  7. }
  8. module.exports = exports["default"];