hexlet-async

[![Code Climate](https://codeclimate.com/github/hexlet-components/js-async/badges/gpa.svg)](https://codeclimate.com/github/hexlet-components/js-async) [![Issue Count](https://codeclimate.com/github/hexlet-components/js-async/badges/issue_count.svg)](https


License
ISC
Install
npm install hexlet-async@0.2.1

Documentation

js-async

github action status

Install

npm install @hexlet/async

Usage example

import async from '@hexlet/async';

const coll = [[1, 1, 1], [2, 2, 2], [3, 3, 3]];
async.concat(coll, (item, callback) => {
  callback(null, item);
}, (err, result) => {
  console.log(result);
  // => [1, 1, 1, 2, 2, 2, 3, 3, 3]
});

For more information, see the Full Documentation

Hexlet Ltd. logo

This repository is created and maintained by the team and the community of Hexlet, an educational project. Read more about Hexlet (in Russian).