9 lines
232 B
TypeScript
9 lines
232 B
TypeScript
/**
|
|
* Faster version of decodeURIComponent() that does not throw.
|
|
*
|
|
* @param string - the URL string to decode.
|
|
*
|
|
* @returns the decoded string or null if invalid.
|
|
*/
|
|
export declare function uriDecode(string: string): string;
|