(str: string)
| 589 | |
| 590 | const MATRIX_PARAM_SEGMENT_RE = /^[^\/()?;=#]+/; |
| 591 | function matchMatrixKeySegments(str: string): string { |
| 592 | const match = str.match(MATRIX_PARAM_SEGMENT_RE); |
| 593 | return match ? match[0] : ''; |
| 594 | } |
| 595 | |
| 596 | const QUERY_PARAM_RE = /^[^=?&#]+/; |
| 597 | // Return the name of the query param at the start of the string or an empty string |
no test coverage detected
searching dependent graphs…