aboutsummaryrefslogtreecommitdiffstats
path: root/src/helpers/async-helpers.ts
blob: 56051b06599204e00b4abfa8d6d7f5c478fbbee4 (plain) (blame)
1
2
3
4
export function sleep(ms: number = 0) {
  // eslint-disable-next-line no-promise-executor-return
  return new Promise(r => setTimeout(r, ms));
}