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

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