7 lines
163 B
JavaScript
7 lines
163 B
JavaScript
|
/**
|
||
|
* Convert camelCase to dash-case properties.
|
||
|
*/
|
||
|
const camelToDash = (str) => str.replace(/([a-z])([A-Z])/g, "$1-$2").toLowerCase();
|
||
|
|
||
|
export { camelToDash };
|