├── .gitignore ├── .nvmrc ├── .travis.yml ├── LICENSE ├── README.md ├── index.d.ts ├── index.js ├── package.json ├── pom.xml ├── test ├── typings.spec.ts └── wix-eventually.spec.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | package-lock.json 4 | *.log 5 | .idea 6 | *.iml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-eventually/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-eventually/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-eventually/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-eventually/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-eventually/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-eventually/HEAD/package.json -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-eventually/HEAD/pom.xml -------------------------------------------------------------------------------- /test/typings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-eventually/HEAD/test/typings.spec.ts -------------------------------------------------------------------------------- /test/wix-eventually.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-eventually/HEAD/test/wix-eventually.spec.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/wix-eventually/HEAD/tsconfig.json --------------------------------------------------------------------------------