(str: string)
| 583 | |
| 584 | const SEGMENT_RE = /^[^\/()?;#]+/; |
| 585 | function matchSegments(str: string): string { |
| 586 | const match = str.match(SEGMENT_RE); |
| 587 | return match ? match[0] : ''; |
| 588 | } |
| 589 | |
| 590 | const MATRIX_PARAM_SEGMENT_RE = /^[^\/()?;=#]+/; |
| 591 | function matchMatrixKeySegments(str: string): string { |
no test coverage detected
searching dependent graphs…