├── .github └── workflows │ └── ci.yml ├── LICENSE ├── README.md ├── headers.d.ts ├── headers.js ├── package.json ├── test ├── header-setcookie.any.js ├── http-loader.js ├── own-misc-test.any.js └── wpt_test.js └── tsconfig.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmywarting/fetch-headers/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmywarting/fetch-headers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmywarting/fetch-headers/HEAD/README.md -------------------------------------------------------------------------------- /headers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmywarting/fetch-headers/HEAD/headers.d.ts -------------------------------------------------------------------------------- /headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmywarting/fetch-headers/HEAD/headers.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmywarting/fetch-headers/HEAD/package.json -------------------------------------------------------------------------------- /test/header-setcookie.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmywarting/fetch-headers/HEAD/test/header-setcookie.any.js -------------------------------------------------------------------------------- /test/http-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmywarting/fetch-headers/HEAD/test/http-loader.js -------------------------------------------------------------------------------- /test/own-misc-test.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmywarting/fetch-headers/HEAD/test/own-misc-test.any.js -------------------------------------------------------------------------------- /test/wpt_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmywarting/fetch-headers/HEAD/test/wpt_test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmywarting/fetch-headers/HEAD/tsconfig.json --------------------------------------------------------------------------------