Files
DiceCloud/app/imports/ui/utility/swapCase.js
Stefan Zermatten cf0440a8db Added color picker
2019-02-06 13:43:11 +02:00

8 lines
240 B
JavaScript

export function kebabToCamelCase(string){
return string.replace(/-([a-z0-9])/g, g => g[1].toUpperCase());
};
export function camelToKebabCase(string){
return string.replace(/([a-z][A-Z0-9])/g, g => g[0] + '-' + g[1].toLowerCase());
};