| 6 | |
| 7 | // eslint-disable-next-line unicorn/prefer-code-point |
| 8 | const strictUriEncode = string => encodeURIComponent(string).replaceAll(/[!'()*]/g, x => `%${x.charCodeAt(0).toString(16).toUpperCase()}`); |
| 9 | |
| 10 | const encodeFragmentIdentifier = Symbol('encodeFragmentIdentifier'); |
| 11 |
no outgoing calls
no test coverage detected
searching dependent graphs…