mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-08 09:26:42 +00:00
16 lines
513 B
TypeScript
16 lines
513 B
TypeScript
/**
|
|
* Convert a kebab-case string to camelCase
|
|
*/
|
|
export function kebabToCamel(kebab: string): string {
|
|
const ucFirst = (word: string) => word.slice(0, 1).toUpperCase() + word.slice(1);
|
|
const words = kebab.split('-');
|
|
return words[0] + words.slice(1).map(ucFirst).join('');
|
|
}
|
|
|
|
/**
|
|
* Convert a camelCase string to a kebab-case string.
|
|
*/
|
|
export function camelToKebab(camelStr: string): string {
|
|
return camelStr.replace(/[A-Z]/g, (str, offset) => (offset > 0 ? '-' : '') + str.toLowerCase());
|
|
}
|