decodeURI(value) → {string}
Takes a Uniform Resource Identifier (URI) component (previously created by encodeURIComponent or by a similar routine) and
decodes it, replacing \ with spaces in the return. Used internally by the Net classes.
Parameters
Name | Type | Description |
---|---|---|
value | string | The URI component to be decoded. |
Returns
string -
The decoded value.
- Source code: net/Net.js (Line 152)
Please login to continue.