(part)
| 478 | } |
| 479 | |
| 480 | function decodeQueryParamPart(part) { |
| 481 | // http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.1 |
| 482 | part = part.replace(/\+/gm, '%20'); |
| 483 | return tryDecode(part, true); |
| 484 | } |
| 485 | |
| 486 | // The main interface |
| 487 |
no test coverage detected