├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── decoder.ts ├── dispatch.ts ├── fetch.ts ├── package.json └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiro420/FetchHotfix/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiro420/FetchHotfix/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiro420/FetchHotfix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiro420/FetchHotfix/HEAD/README.md -------------------------------------------------------------------------------- /decoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiro420/FetchHotfix/HEAD/decoder.ts -------------------------------------------------------------------------------- /dispatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiro420/FetchHotfix/HEAD/dispatch.ts -------------------------------------------------------------------------------- /fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiro420/FetchHotfix/HEAD/fetch.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiro420/FetchHotfix/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hiro420/FetchHotfix/HEAD/tsconfig.json --------------------------------------------------------------------------------