| export function processItems(items: string[]): string[] { | |
| const results: string[] = [] | |
| for (const item of items) { | |
| results.push(item.toUpperCase()) | |
| } | |
| return results | |
| } | |
| export function processItems(items: string[]): string[] { | |
| const results: string[] = [] | |
| for (const item of items) { | |
| results.push(item.toUpperCase()) | |
| } | |
| return results | |
| } | |