(values: string[])
| 108 | } |
| 109 | |
| 110 | function normalizeTextRules(values: string[]): string[] { |
| 111 | return [...new Set(values.map((value) => value.trim()).filter(Boolean))].sort(); |
| 112 | } |
| 113 | |
| 114 | function normalizeAsnRules(values: number[]): number[] { |
| 115 | return [...new Set(values)].sort((a, b) => a - b); |
no outgoing calls
no test coverage detected