# asyncjs-util

> Asyncjs Utilities

Latest version **1.2.12** (published 2023-06-26) · MIT license · 0 weekly downloads

## Install

```sh
npm install asyncjs-util
pnpm add asyncjs-util
yarn add asyncjs-util
bun add asyncjs-util
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.2.12 |
| Published | 2023-06-26 |
| First published | 2019-05-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 9.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Alex Bosworth |
| Maintainers | alexbosworth |
| Keywords | asyncjs |

## Links

- npm: https://www.npmjs.com/package/asyncjs-util
- Repository: https://github.com/alexbosworth/asyncjs-util
- Homepage: https://github.com/alexbosworth/asyncjs-util#readme
- Issues: https://github.com/alexbosworth/asyncjs-util/issues
- npm.io page: https://npm.io/package/asyncjs-util

## Dependencies (1)

- [async](https://npm.io/package/async.md) 3.2.4

## Alternatives

- [@commercetools/sync-actions](https://npm.io/package/@commercetools/sync-actions.md) — 25.1K weekly downloads
- [cwait](https://npm.io/package/cwait.md) — 21.4K weekly downloads
- [@ledgerhq/hw-app-cosmos](https://npm.io/package/@ledgerhq/hw-app-cosmos.md) — 4.2K weekly downloads
- [@financial-times/o-loading](https://npm.io/package/@financial-times/o-loading.md) — 2.8K weekly downloads
- [fa](https://npm.io/package/fa.md) — 185 weekly downloads

## Recent versions

- 1.2.12 (latest) — 2023-06-26
- 1.2.11 — 2023-01-06
- 1.2.10 — 2022-06-10
- 1.2.9 — 2022-04-02
- 1.2.8 — 2022-01-13
- 1.2.7 — 2021-10-29
- 1.2.6 — 2021-05-27
- 1.2.5 — 2021-04-02
- 1.2.4 — 2021-03-30
- 1.2.3 — 2020-07-16
- 1.2.2 — 2020-03-24
- 1.2.1 — 2020-03-13
- 1.2.0 — 2020-03-13
- 1.1.3 — 2020-01-11
- 1.1.2 — 2019-08-12
- … 3 more at https://npm.io/package/asyncjs-util/versions

## README

# Asyncjs Utilities

Utility methods for working with [asyncjs](http://caolan.github.io/async/v3/)

[![npm version](https://badge.fury.io/js/asyncjs-util.svg)](https://badge.fury.io/js/asyncjs-util)
[![Coverage Status](https://coveralls.io/repos/github/alexbosworth/asyncjs-util/badge.svg?branch=master)](https://coveralls.io/github/alexbosworth/asyncjs-util?branch=master)
[![Build Status](https://travis-ci.org/alexbosworth/asyncjs-util.svg?branch=master)](https://travis-ci.org/alexbosworth/asyncjs-util)

## getMaximum

Get maximum value through binary search

    {
      [accuracy]: <Close Enough Delta Number>
      from: <Minimum Number>
      to: <Maximum Number>
    }

    <Async Test Function> ({cursor}, (err, isLow) => {}) => {}

    @returns via cbk or Promise
    {
      maximum: <Maximum Number>
    }

## returnResult

Return a specific result of an async/auto process

Omit a cbk and specify reject/resolve if using a Promise

    {
      [of]: <Property String>
      [reject]: <Promise Reject Function>
      [resolve]: <Promise Resolve Function>
    }
    [cbk]: <Callback Function>

    @returns
    <Function> (err, res) => {}

---
_Source: https://npm.io/package/asyncjs-util · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
