Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Detomo/ai-comic-generation
ChrisJohnson111
/
test11
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
dfd65b7
test11
/
src
/
lib
/
sleep.ts
vumichien
Upload folder using huggingface_hub
2728346
over 1 year ago
raw
Copy download link
history
blame
Safe
150 Bytes
export
const
sleep
=
async
(
durationInMs:
number
) =>
new
Promise
(
(
resolve
) =>
{
setTimeout
(
() =>
{
resolve
(
true
)
}, durationInMs)
})