(input: string)
| 28 | } |
| 29 | |
| 30 | const pathSegments = (input: string): readonly string[] => |
| 31 | normalizePath(input) |
| 32 | .split("/") |
| 33 | .filter((segment) => segment.length > 0); |
| 34 | |
| 35 | export const matchPluginPagePath = ( |
| 36 | pattern: string, |
no test coverage detected