database-petani-mobile/node_modules/framer-motion/dist/es/render/dom/utils/camel-to-dash.mjs
2026-02-23 16:39:35 +07: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 };