delay-async

A Promise-based wrapper for setTimeout


Keywords
delay, wait, async, promise, setTimeout
License
MIT
Install
npm install delay-async@1.2.0

Documentation

delay-async

A Promise-based wrapper for setTimeout

Usage

import delayAsync from 'delay-async';

async function wait100ms() {
    console.log("Start");
    await delayAsync(100);
    console.log("100ms later");
}