File size: 232 Bytes
8c741f6
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
/**
 * 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;