(encodeText: string)
| 45 | * @return {String} URL decode original string. |
| 46 | */ |
| 47 | export function decodeURIComponent(encodeText: string): string { |
| 48 | try { |
| 49 | return global.decodeURIComponent(encodeText); |
| 50 | } catch { |
| 51 | return encodeText; |
| 52 | } |
| 53 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…