Files
Webklar.com/node_modules/motion-dom/dist/es/render/dom/utils/camel-to-dash.mjs
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

6 lines
129 B
JavaScript

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