(value: string)
| 227 | } |
| 228 | |
| 229 | function normalizeTabValue(value: string): string { |
| 230 | return value.toLowerCase().replaceAll(/[\s_-]/g, ""); |
| 231 | } |
| 232 | |
| 233 | function getEditDistance(left: string, right: string): number { |
| 234 | let previousRow = Array.from({ length: right.length + 1 }, (_, index) => index); |
no test coverage detected