mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-04 11:25:52 +08:00

Co-authored-by: Chintan Sudani <46838508+techchintan@users.noreply.github.com> Co-authored-by: Palash Gupta <palashgdev@gmail.com>
3 lines
106 B
TypeScript
3 lines
106 B
TypeScript
export const transformToUpperCase = (str: string): string =>
|
|
str.charAt(0).toUpperCase() + str.slice(1);
|