7 lines
164 B
JavaScript
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 };
|