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.
- Host: GitHub
- URL: https://github.com/pirxpilot/run-until
- Owner: pirxpilot
- Created: 2017-05-07T03:21:35.000Z (about 9 years ago)
- Default Branch: main
- Last Pushed: 2024-02-21T10:07:42.000Z (over 2 years ago)
- Last Synced: 2025-05-22T02:38:42.355Z (about 1 year ago)
- Language: JavaScript
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- Changelog: History.md
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