├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.ts ├── package.json ├── test └── promise.test.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickhansen/retry-as-promised/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickhansen/retry-as-promised/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickhansen/retry-as-promised/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickhansen/retry-as-promised/HEAD/README.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickhansen/retry-as-promised/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickhansen/retry-as-promised/HEAD/package.json -------------------------------------------------------------------------------- /test/promise.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickhansen/retry-as-promised/HEAD/test/promise.test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickhansen/retry-as-promised/HEAD/tsconfig.json --------------------------------------------------------------------------------