mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
at rn-stack-repro 3 lines 100 B view raw
1export function timeout(ms: number): Promise<void> { 2 return new Promise(r => setTimeout(r, ms)) 3}