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

https://github.com/knowledgecode/nowait

A better async function than the setTimeout(..., 0) for the browser
https://github.com/knowledgecode/nowait

Last synced: 5 months ago
JSON representation

A better async function than the setTimeout(..., 0) for the browser

Awesome Lists containing this project

README

          

# nowait

This is a better async function than the `setTimeout(..., 0)` for the browser. It will execute the passed function asynchronously with the best way in supported by the running browser. The `setTimeout(..., 0)` will be used if there is no other better way.

## Installation

via npm:

```shell
npm install knowledgecode@nowait --save
```

## Usage

ES modules:

```javascript
import nowait from './dist/nowait.es.min.js';

nowait(fn);
```

Traditional:

```html

nowait(fn);

```

## Browser support

Chrome, Android Chrome, Firefox, Safari, iOS Safari, Edge, IE