0.4.3 • Published 4 years ago

@hexlet/async v0.4.3

Weekly downloads
6
License
ISC
Repository
github
Last release
4 years ago

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).