A async queue manager.
npm install @ktools/async-queue> A async queue tool.
``bash`
npm i -S @ktools/async-queue
// or
yarn add @ktools/async-queue
`js
import AsyncQueue from '@ktools/async-queue';
// or const { AsyncQueue } = require('@ktools/async-queue');
const queue = AsyncQueue.create();
queue.push(async () => {
// do some async actions.
}).then(console.log);
queue.push(async () => {
// do some async actions.
}).then(console.log);
``