An open API service indexing awesome lists of open source software.

https://github.com/pirxpilot/run-until

Run a sequence of async functions until one of them returns something.
https://github.com/pirxpilot/run-until

Last synced: about 1 year ago
JSON representation

Run a sequence of async functions until one of them returns something.

Awesome Lists containing this project

README

          

[![NPM version][npm-image]][npm-url]
[![Build Status][build-image]][build-url]
[![Dependency Status][deps-image]][deps-url]

# run-until

Run a sequence of async functions until one of them returns something.

## Install

```sh
$ npm install --save run-until
```

## Usage

```js
var runUntil = require('run-until');

runUntil('Rainbow');
```

## License

MIT © [Damian Krzeminski](https://code42day.com)

[npm-image]: https://img.shields.io/npm/v/run-until
[npm-url]: https://npmjs.org/package/run-until

[build-url]: https://github.com/pirxpilot/run-until/actions/workflows/check.yaml
[build-image]: https://img.shields.io/github/actions/workflow/status/pirxpilot/run-until/check.yaml?branch=main

[deps-image]: https://img.shields.io/librariesio/release/npm/run-until
[deps-url]: https://libraries.io/npm/run-until