Files
cartlog-admin/node_modules/motion-dom/dist/es/render/dom/utils/camel-to-dash.mjs
2026-01-01 15:25:19 +05:30

6 lines
129 B
JavaScript

function camelToDash(str) {
return str.replace(/([A-Z])/g, (match) => `-${match.toLowerCase()}`);
}
export { camelToDash };