angular-tabler-icons
Version:
Tabler Icons components library for your Angular applications
18 lines (17 loc) • 528 B
TypeScript
/**
* Converts a given string to UpperCamelCase (PascalCase).
*
* This function transforms the input string by:
* 1. Converting the entire string to lowercase.
* 2. Capitalizing the first letter of each word or uppercase letter.
* 3. Removing any hyphens or underscores.
*
* @example
* ```ts
* upperCamelCase('foo-bar'); // FooBar
* ```
*
* @param str - The input string to be converted.
* @returns The transformed string in UpperCamelCase format.
*/
export declare function upperCamelCase(str: string): string;