(segment: string)
| 330 | const memo = new Map<string, boolean>(); |
| 331 | const parent = new Map<string, { i2: number; j2: number }>(); |
| 332 | const isDoubleStar = (segment: string) => segment === "**"; |
| 333 | const segmentMatches = (patternSegment: string, sourceSegment: string) => { |
| 334 | const concrete = patternSegment.replaceAll("[locale]", locale); |
| 335 | return minimatch(sourceSegment, concrete, { dot: true, nocase: true }); |
no outgoing calls
no test coverage detected