postiz/libraries/helpers/src/utils/timer.ts

1 line
77 B
TypeScript

export const timer = (ms: number) => new Promise(res => setTimeout(res, ms));