├── .eslintrc ├── .flowconfig ├── .gitignore ├── .npmignore ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── index.js.flow ├── package.json ├── test ├── .babelrc ├── .eslintrc └── index.test.js └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganfsmyth/gensync/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [include] 2 | index.js 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganfsmyth/gensync/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | trailingComma: "es5", 3 | } 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganfsmyth/gensync/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganfsmyth/gensync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganfsmyth/gensync/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganfsmyth/gensync/HEAD/index.js -------------------------------------------------------------------------------- /index.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganfsmyth/gensync/HEAD/index.js.flow -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganfsmyth/gensync/HEAD/package.json -------------------------------------------------------------------------------- /test/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganfsmyth/gensync/HEAD/test/.babelrc -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganfsmyth/gensync/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganfsmyth/gensync/HEAD/test/index.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganfsmyth/gensync/HEAD/yarn.lock --------------------------------------------------------------------------------