mirror of
https://github.com/azure/login.git
synced 2026-06-07 10:47:13 +00:00
* Bump lodash from 4.17.15 to 4.17.19 (#52) Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * Bump @actions/core from 1.1.3 to 1.2.6 (#60) Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.1.3 to 1.2.6. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * updating node_nodules * updated package-lock Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
69 lines
2.1 KiB
Markdown
69 lines
2.1 KiB
Markdown
# asyncc
|
|
|
|
> Just async patterns
|
|
|
|
[](https://www.npmjs.com/package/asyncc/)
|
|
[](https://travis-ci.org/commenthol/asyncc)
|
|
|
|
Asynchronous patterns, no dependencies, no bloat, more isn't needed.
|
|
|
|
Runs in the browser and on node. Less than 6kB in size.
|
|
|
|
- [Latest Documentation](https://commenthol.github.io/asyncc)
|
|
- [Documentation for v1](https://commenthol.github.io/asyncc/docs_v1)
|
|
- [Migrating to v2](https://github.com/commenthol/asyncc/blob/master/doc/migrate-to-v2.md)
|
|
|
|
# Serial execution patterns
|
|
|
|
- [compose](https://commenthol.github.io/asyncc/module-serial.html#.compose)
|
|
- [connect](https://commenthol.github.io/asyncc/module-serial.html#.connect)
|
|
- [doUntil](https://commenthol.github.io/asyncc/module-serial.html#.doUntil)
|
|
- [doWhilst](https://commenthol.github.io/asyncc/module-serial.html#.doWhilst)
|
|
- [eachSeries](https://commenthol.github.io/asyncc/module-serial.html#.eachSeries)
|
|
- [NoPromise](https://commenthol.github.io/asyncc/NoPromise.html)
|
|
- [series](https://commenthol.github.io/asyncc/module-serial.html#.series)
|
|
- [times](https://commenthol.github.io/asyncc/module-serial.html#.times)
|
|
- [until](https://commenthol.github.io/asyncc/module-serial.html#.until)
|
|
- [whilst](https://commenthol.github.io/asyncc/module-serial.html#.whilst)
|
|
|
|
# Parallel execution patterns
|
|
|
|
- [each](https://commenthol.github.io/asyncc/module-parallel.html#.each)
|
|
- [eachLimit](https://commenthol.github.io/asyncc/module-parallel.html#.eachLimit)
|
|
- [parallel](https://commenthol.github.io/asyncc/module-parallel.html#.parallel)
|
|
- [parallelLimit](https://commenthol.github.io/asyncc/module-parallel.html#.parallelLimit)
|
|
- [Queue](https://commenthol.github.io/asyncc/Queue.html)
|
|
|
|
# Installation
|
|
|
|
npm install --save asyncc
|
|
|
|
# Usage
|
|
|
|
As ES6 Modules
|
|
|
|
```js
|
|
import {NoPromise, connect} from 'asyncc'
|
|
```
|
|
|
|
As CommonJS Modules
|
|
|
|
```js
|
|
const {NoPromise, connect} = require('asyncc')
|
|
```
|
|
|
|
or picking individual methods
|
|
|
|
```js
|
|
const connect = require('asyncc/lib/connect')
|
|
```
|
|
|
|
# References
|
|
|
|
<!-- !ref -->
|
|
|
|
* [LICENSE][LICENSE]
|
|
|
|
<!-- ref! -->
|
|
|
|
[LICENSE]: ./LICENSE.txt
|