mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1export function timeout(ms: number): Promise<void> { 2 return new Promise(r => setTimeout(r, ms)) 3}