aboutsummaryrefslogtreecommitdiffstats
path: root/src/helpers/async-helpers.js
blob: c6c57e28e3469c5fb0f6ebc69aab71f8578d38f3 (plain) (blame)
1
2
3
4
5
/* eslint-disable import/prefer-default-export */

export function sleep(ms = 0) {
  return new Promise((r) => setTimeout(r, ms));
}