Files
Housekeeping-web-admin/node_modules/framer-motion/dist/es/render/dom/utils/camel-to-dash.mjs
T
2026-06-24 09:48:54 +02:00

7 lines
164 B
JavaScript

/**
* Convert camelCase to dash-case properties.
*/
const camelToDash = (str) => str.replace(/([a-z])([A-Z])/gu, "$1-$2").toLowerCase();
export { camelToDash };