camel-to-dash.mjs 164 B

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