UNPKG

219 BJavaScriptView Raw
1"use strict";
2
3exports.__esModule = true;
4exports.default = hyphenate;
5var rUpper = /([A-Z])/g;
6
7function hyphenate(string) {
8 return string.replace(rUpper, '-$1').toLowerCase();
9}
10
11module.exports = exports["default"];
\No newline at end of file