(value: string)
| 189 | const queue: string[] = []; |
| 190 | const seen = new Set<string>(); |
| 191 | const push = (value: string) => { |
| 192 | const normalized = value.trim().toLowerCase(); |
| 193 | if (!normalized || seen.has(normalized)) return; |
| 194 | seen.add(normalized); |
| 195 | queue.push(normalized); |
| 196 | }; |
| 197 | |
| 198 | push(modelName); |
| 199 |
no test coverage detected