(segment: string)
| 23 | | 'legacy' |
| 24 | |
| 25 | export const encodeURIComponentExcludingSubDelims = (segment: string): string => |
| 26 | segment.replace(excludeSubDelimiters, match => encodeURIComponent(match)) |
| 27 | |
| 28 | const encodingMethods: Record< |
| 29 | URLParamsEncodingType, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…