"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getKebabCaseName = void 0;
function getKebabCaseName(name) {
return name.replace(/([A-Z])/g, (m, $1) => `-${$1.toLowerCase()}`).replace(/^-/, '');
}
exports.getKebabCaseName = getKebabCaseName;