├── .editorconfig ├── .github ├── funding.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.json ├── .vscode └── settings.json ├── UploadHttpLink.mjs ├── UploadHttpLink.test.mjs ├── apollo-upload-logo.svg ├── changelog.md ├── eslint.config.mjs ├── formDataAppendFile.mjs ├── formDataAppendFile.test.mjs ├── isExtractableFile.mjs ├── jsconfig.json ├── package.json ├── readme.md └── test ├── assertBundleSize.mjs ├── createUnexpectedCallError.mjs └── timeLimitPromise.mjs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/apollo-upload-client/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- 1 | github: jaydenseric 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/apollo-upload-client/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "proseWrap": "never" 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/apollo-upload-client/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /UploadHttpLink.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/apollo-upload-client/HEAD/UploadHttpLink.mjs -------------------------------------------------------------------------------- /UploadHttpLink.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/apollo-upload-client/HEAD/UploadHttpLink.test.mjs -------------------------------------------------------------------------------- /apollo-upload-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/apollo-upload-client/HEAD/apollo-upload-logo.svg -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/apollo-upload-client/HEAD/changelog.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/apollo-upload-client/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /formDataAppendFile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/apollo-upload-client/HEAD/formDataAppendFile.mjs -------------------------------------------------------------------------------- /formDataAppendFile.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/apollo-upload-client/HEAD/formDataAppendFile.test.mjs -------------------------------------------------------------------------------- /isExtractableFile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/apollo-upload-client/HEAD/isExtractableFile.mjs -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/apollo-upload-client/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/apollo-upload-client/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/apollo-upload-client/HEAD/readme.md -------------------------------------------------------------------------------- /test/assertBundleSize.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/apollo-upload-client/HEAD/test/assertBundleSize.mjs -------------------------------------------------------------------------------- /test/createUnexpectedCallError.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/apollo-upload-client/HEAD/test/createUnexpectedCallError.mjs -------------------------------------------------------------------------------- /test/timeLimitPromise.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaydenseric/apollo-upload-client/HEAD/test/timeLimitPromise.mjs --------------------------------------------------------------------------------