(s: string)
| 550 | } |
| 551 | |
| 552 | export function decode(s: string): string { |
| 553 | return decodeURIComponent(s); |
| 554 | } |
| 555 | |
| 556 | // Query keys/values should have the "+" replaced first, as "+" in a query string is " ". |
| 557 | // decodeURIComponent function will not decode "+" as a space. |
no outgoing calls
no test coverage detected
searching dependent graphs…