ts-ci/src/tools/toUpperCase.ts

4 lines
82 B
TypeScript
Raw Normal View History

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