(str)
| 401 | |
| 402 | if (订阅链接 && 订阅链接.length !== 0) { |
| 403 | function base64Decode(str) { |
| 404 | const bytes = new Uint8Array(atob(str).split('').map(c => c.charCodeAt(0))); |
| 405 | const decoder = new TextDecoder('utf-8'); |
| 406 | return decoder.decode(bytes); |
| 407 | } |
| 408 | const controller = new AbortController(); // 创建一个AbortController实例,用于取消请求 |
| 409 | |
| 410 | const timeout = setTimeout(() => { |