├── .eslintrc.cjs ├── .github └── workflows │ └── test.yaml ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src └── ffetch.js └── test └── ffetch.js /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ffetch/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ffetch/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | node_modules/ 3 | .vscode/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ffetch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ffetch/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ffetch/HEAD/package.json -------------------------------------------------------------------------------- /src/ffetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ffetch/HEAD/src/ffetch.js -------------------------------------------------------------------------------- /test/ffetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ffetch/HEAD/test/ffetch.js --------------------------------------------------------------------------------