ts-ci/src/tools/toUpperCase.ts

4 lines
83 B
TypeScript
Raw Normal View History

2020-05-27 22:02:44 +02:00
export function toUpperCase(str: string): string {
2020-05-14 00:47:15 +02:00
return str.toUpperCase();
2020-05-27 22:02:44 +02:00
}