jbilcke-hf's picture
jbilcke-hf HF staff
initial commit 🌝
fecef05
raw
history blame
No virus
150 Bytes
export const sleep = async (durationInMs: number) =>
new Promise((resolve) => {
setTimeout(() => {
resolve(true)
}, durationInMs)
})