index.ts 110 B

12345
  1. function sleep(ms: number) {
  2. return new Promise((resolve) => setTimeout(resolve, ms));
  3. }
  4. export { sleep };