├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README-ja.md ├── README.md ├── babel.config.js ├── benchmark └── benchmark.js ├── dist ├── chillout.js └── chillout.min.js ├── examples ├── map-iterator.js └── reduce-iterator.js ├── karma.conf.js ├── package.json ├── src ├── banner.js ├── index.js ├── iterate.js ├── iterator.js ├── next-tick.js ├── stop-iteration.js └── util.js └── test ├── async-await-test.js ├── async-await.spec.js ├── chillout.spec.js ├── for-each.spec.js ├── for-of.spec.js ├── repeat.spec.js ├── until.spec.js └── wait-until.spec.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/LICENSE -------------------------------------------------------------------------------- /README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/README-ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/babel.config.js -------------------------------------------------------------------------------- /benchmark/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/benchmark/benchmark.js -------------------------------------------------------------------------------- /dist/chillout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/dist/chillout.js -------------------------------------------------------------------------------- /dist/chillout.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/dist/chillout.min.js -------------------------------------------------------------------------------- /examples/map-iterator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/examples/map-iterator.js -------------------------------------------------------------------------------- /examples/reduce-iterator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/examples/reduce-iterator.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/package.json -------------------------------------------------------------------------------- /src/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/src/banner.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/src/index.js -------------------------------------------------------------------------------- /src/iterate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/src/iterate.js -------------------------------------------------------------------------------- /src/iterator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/src/iterator.js -------------------------------------------------------------------------------- /src/next-tick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/src/next-tick.js -------------------------------------------------------------------------------- /src/stop-iteration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/src/stop-iteration.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/src/util.js -------------------------------------------------------------------------------- /test/async-await-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/test/async-await-test.js -------------------------------------------------------------------------------- /test/async-await.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/test/async-await.spec.js -------------------------------------------------------------------------------- /test/chillout.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/test/chillout.spec.js -------------------------------------------------------------------------------- /test/for-each.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/test/for-each.spec.js -------------------------------------------------------------------------------- /test/for-of.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/test/for-of.spec.js -------------------------------------------------------------------------------- /test/repeat.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/test/repeat.spec.js -------------------------------------------------------------------------------- /test/until.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/test/until.spec.js -------------------------------------------------------------------------------- /test/wait-until.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polygonplanet/chillout/HEAD/test/wait-until.spec.js --------------------------------------------------------------------------------