Files
react/node_modules/motion-dom/dist/es/render/dom/utils/camel-to-dash.mjs
2025-12-28 20:50:08 +00:00

6 lines
129 B
JavaScript

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