├── .babelrc ├── .eslintrc ├── .gitignore ├── .travis.yml ├── README.md ├── bin ├── async-node.js └── wrap-with-async.js ├── examples ├── image-downloader │ ├── README.md │ ├── index.js │ ├── package.json │ └── yarn.lock └── mongo │ ├── README.md │ ├── index.js │ ├── package.json │ └── yarn.lock ├── package.json ├── src └── index.js ├── test ├── cli.js ├── fixtures │ ├── arguments.js │ ├── input.js │ ├── invalid.js │ └── output.js └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | lib/ 3 | coverage/ 4 | .nyc_output 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/README.md -------------------------------------------------------------------------------- /bin/async-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/bin/async-node.js -------------------------------------------------------------------------------- /bin/wrap-with-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/bin/wrap-with-async.js -------------------------------------------------------------------------------- /examples/image-downloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/examples/image-downloader/README.md -------------------------------------------------------------------------------- /examples/image-downloader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/examples/image-downloader/index.js -------------------------------------------------------------------------------- /examples/image-downloader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/examples/image-downloader/package.json -------------------------------------------------------------------------------- /examples/image-downloader/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/examples/image-downloader/yarn.lock -------------------------------------------------------------------------------- /examples/mongo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/examples/mongo/README.md -------------------------------------------------------------------------------- /examples/mongo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/examples/mongo/index.js -------------------------------------------------------------------------------- /examples/mongo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/examples/mongo/package.json -------------------------------------------------------------------------------- /examples/mongo/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/examples/mongo/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/src/index.js -------------------------------------------------------------------------------- /test/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/test/cli.js -------------------------------------------------------------------------------- /test/fixtures/arguments.js: -------------------------------------------------------------------------------- 1 | console.log(JSON.stringify(Array.from(process.argv).slice(2))); 2 | -------------------------------------------------------------------------------- /test/fixtures/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/test/fixtures/input.js -------------------------------------------------------------------------------- /test/fixtures/invalid.js: -------------------------------------------------------------------------------- 1 | I AM NOT JAVASCRIPT! 2 | -------------------------------------------------------------------------------- /test/fixtures/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/test/fixtures/output.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/test/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fand/async-node/HEAD/yarn.lock --------------------------------------------------------------------------------