Files
2025-12-28 20:50:08 +00: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 };