| ; | |
| Object.defineProperty(exports, "__esModule", { value: true }); | |
| exports.processItems = processItems; | |
| function processItems(items) { | |
| const results = []; | |
| for (const item of items) { | |
| results.push(item.toUpperCase()); | |
| } | |
| return results; | |
| } | |
| //# sourceMappingURL=utils.js.map |