├── .editorconfig ├── .eslintignore ├── .github └── FUNDING.yml ├── .gitignore ├── .mzrc ├── .npmignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── docs ├── README.md ├── concurrent-API.md ├── serial-API.md └── transducers-API.md ├── package.json ├── scripts ├── build-all.js └── node-tests.js ├── src ├── concurrent.js ├── copyright-header.txt ├── index.js ├── internals.js ├── serial.js └── transducers.js └── tests ├── index.html ├── qunit.config.js └── tests.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | README.md 2 | node_modules/ 3 | dist/ 4 | coverage/ 5 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/.gitignore -------------------------------------------------------------------------------- /.mzrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/.mzrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/concurrent-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/docs/concurrent-API.md -------------------------------------------------------------------------------- /docs/serial-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/docs/serial-API.md -------------------------------------------------------------------------------- /docs/transducers-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/docs/transducers-API.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/scripts/build-all.js -------------------------------------------------------------------------------- /scripts/node-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/scripts/node-tests.js -------------------------------------------------------------------------------- /src/concurrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/src/concurrent.js -------------------------------------------------------------------------------- /src/copyright-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/src/copyright-header.txt -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/src/index.js -------------------------------------------------------------------------------- /src/internals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/src/internals.js -------------------------------------------------------------------------------- /src/serial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/src/serial.js -------------------------------------------------------------------------------- /src/transducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/src/transducers.js -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/qunit.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/tests/qunit.config.js -------------------------------------------------------------------------------- /tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getify/fasy/HEAD/tests/tests.js --------------------------------------------------------------------------------