Skip to content
This repository has been archived by the owner on Jul 23, 2023. It is now read-only.

vlad-iakovlev/async-pause

Repository files navigation

async-pause

Asynchronous pause

GitHub CI Codecov NPM

How to install

npm install async-pause

How to use

import { asyncPause } from 'async-pause'

(async () => {
  console.log('foo');
  await asyncPause(1000);
  console.log('bar'); // Will be executed after a second
})();