├── .eslintrc.js ├── .github └── workflows │ ├── codeql-analysis.yml │ └── node.js.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENCE ├── README.md ├── package.json ├── src ├── remote-data.test.ts └── remote-data.ts └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roebuk/remote-data/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roebuk/remote-data/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roebuk/remote-data/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .nyc_output 4 | coverage 5 | .DS_Store 6 | *.log 7 | docs -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roebuk/remote-data/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roebuk/remote-data/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roebuk/remote-data/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roebuk/remote-data/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roebuk/remote-data/HEAD/package.json -------------------------------------------------------------------------------- /src/remote-data.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roebuk/remote-data/HEAD/src/remote-data.test.ts -------------------------------------------------------------------------------- /src/remote-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roebuk/remote-data/HEAD/src/remote-data.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roebuk/remote-data/HEAD/tsconfig.json --------------------------------------------------------------------------------