├── .eslintrc ├── .flowconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── renovate.json ├── speculation.js ├── src ├── index.js ├── index.test.js ├── wait.js └── wait.test.js └── wait.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/speculation/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/speculation/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/speculation/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/speculation/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/speculation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/speculation/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/speculation/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/speculation/HEAD/renovate.json -------------------------------------------------------------------------------- /speculation.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/index'); 2 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/speculation/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/speculation/HEAD/src/index.test.js -------------------------------------------------------------------------------- /src/wait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/speculation/HEAD/src/wait.js -------------------------------------------------------------------------------- /src/wait.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericelliott/speculation/HEAD/src/wait.test.js -------------------------------------------------------------------------------- /wait.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/wait'); 2 | --------------------------------------------------------------------------------