Files
copilot-toolbox-template-123/node_modules/string-convert/camel2hyphen.js
2026-01-09 14:52:46 +00:00

9 lines
216 B
JavaScript

var camel2hyphen = function (str) {
return str
.replace(/[A-Z]/g, function (match) {
return '-' + match.toLowerCase();
})
.toLowerCase();
};
module.exports = camel2hyphen;