| Server IP : 159.203.156.69 / Your IP : 216.73.216.28 Web Server : nginx/1.24.0 System : Linux main-ubuntu 6.8.0-71-generic #71-Ubuntu SMP PREEMPT_DYNAMIC Tue Jul 22 16:52:38 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/tanviranik.com/node_modules/unenv/dist/runtime/npm/ |
Upload File : |
// https://github.com/node-fetch/node-fetch // Native browser APIs export const fetch = (...args) => globalThis.fetch(...args); export const Headers = globalThis.Headers; export const Request = globalThis.Request; export const Response = globalThis.Response; export const AbortController = globalThis.AbortController; // Error handling export const FetchError = Error; export const AbortError = Error; // Top-level exported helpers (from node-fetch v3) const redirectStatus = new Set([ 301, 302, 303, 307, 308 ]); export const isRedirect = (code) => redirectStatus.has(code); // node-fetch v2 fetch.Promise = globalThis.Promise; fetch.isRedirect = isRedirect; export default fetch;