ICT30016-Assignment-3/node_modules/framer-motion/dist/es/render/dom/utils/camel-to-dash.mjs
dlawler489 a79a6afd34 intial
intial
2025-09-16 12:09:52 +10:00

6 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 };