(s: string)
| 525 | * http://www.site.org/html;mk=mv?k=v#f |
| 526 | */ |
| 527 | export function encodeUriQuery(s: string): string { |
| 528 | return encodeUriString(s).replace(/%3B/gi, ';'); |
| 529 | } |
| 530 | |
| 531 | /** |
| 532 | * This function should be used to encode a URL fragment. In the following URL, you need to call |
no test coverage detected
searching dependent graphs…