Decodes part of URI search string, i.e. either search parameter name or value.
In contrast to standard decodeURIComponent function, this one treats plus signs ("+" (U+002B)) as spaces. I.e. decodes the same way as URLSearchParams do.
"+" (U+002B)
Part of URI search string to decode.
Decoded part of URI search string.
Generated using TypeDoc
Decodes part of URI search string, i.e. either search parameter name or value.
In contrast to standard decodeURIComponent function, this one treats plus signs (
"+" (U+002B)
) as spaces. I.e. decodes the same way as URLSearchParams do.