semblance-dev/node_modules/dom-helpers/cjs/hyphenate.js
2025-12-19 19:26:16 +00:00

11 lines
No EOL
219 B
JavaScript
Executable file

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