(value: string)
| 682 | private normalizeLookupKeys(raw: string): string[] { |
| 683 | const out: string[] = []; |
| 684 | const push = (value: string) => { |
| 685 | const next = String(value || '').trim(); |
| 686 | if (!next || out.includes(next)) {return;} |
| 687 | out.push(next); |
| 688 | }; |
| 689 | const trimmed = String(raw || '').trim(); |
| 690 | push(trimmed); |
| 691 | if (trimmed.startsWith('self._')) {push(trimmed.replace('self._', ''));} |
no test coverage detected