postio / libraries /helpers /src /utils /timer.ts
Leon4gr45's picture
Upload folder using huggingface_hub (part 9)
57aa51e verified
Raw
History Blame Contribute Delete
80 Bytes
export const timer = (ms: number) => new Promise((res) => setTimeout(res, ms));