├── .babelrc ├── .gitignore ├── HISTORY.md ├── README.md ├── index.d.ts ├── package.json ├── rx-typings.d.ts ├── src ├── index.ts ├── makeAsyncDriver.ts └── makeDriverSource.ts ├── test └── test.js ├── tsconfig.json ├── typings.json ├── xstream-typings.d.ts ├── xstream.d.ts └── xstream.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-0"] 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wclr/cycle-async-driver/HEAD/.gitignore -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wclr/cycle-async-driver/HEAD/HISTORY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wclr/cycle-async-driver/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wclr/cycle-async-driver/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wclr/cycle-async-driver/HEAD/package.json -------------------------------------------------------------------------------- /rx-typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wclr/cycle-async-driver/HEAD/rx-typings.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wclr/cycle-async-driver/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/makeAsyncDriver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wclr/cycle-async-driver/HEAD/src/makeAsyncDriver.ts -------------------------------------------------------------------------------- /src/makeDriverSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wclr/cycle-async-driver/HEAD/src/makeDriverSource.ts -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wclr/cycle-async-driver/HEAD/test/test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wclr/cycle-async-driver/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wclr/cycle-async-driver/HEAD/typings.json -------------------------------------------------------------------------------- /xstream-typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wclr/cycle-async-driver/HEAD/xstream-typings.d.ts -------------------------------------------------------------------------------- /xstream.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wclr/cycle-async-driver/HEAD/xstream.d.ts -------------------------------------------------------------------------------- /xstream.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib') --------------------------------------------------------------------------------