ts-ci/src/tools/toUpperCase.ts
2020-05-27 22:02:44 +02:00

3 lines
83 B
TypeScript

export function toUpperCase(str: string): string {
return str.toUpperCase();
}