Duplicated from jbilcke-hf/VideoChain-API
53aa97a
1
2
3
4
5
6
export const sleep = async (durationInMs: number) => new Promise((resolve) => { setTimeout(() => { resolve(true) }, durationInMs) })