├── .github └── workflows │ └── unit-test.yaml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── eslint.config.js ├── index.js ├── package.json ├── renovate.json └── test ├── index.js └── server.js /.github/workflows/unit-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widdix/s3-getobject-accelerator/HEAD/.github/workflows/unit-test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .github/ 2 | coverage/ 3 | test/ 4 | .eslintrc.yml 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widdix/s3-getobject-accelerator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widdix/s3-getobject-accelerator/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widdix/s3-getobject-accelerator/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widdix/s3-getobject-accelerator/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widdix/s3-getobject-accelerator/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widdix/s3-getobject-accelerator/HEAD/renovate.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widdix/s3-getobject-accelerator/HEAD/test/index.js -------------------------------------------------------------------------------- /test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widdix/s3-getobject-accelerator/HEAD/test/server.js --------------------------------------------------------------------------------