Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Minecraft3193092/ai-manga-factory
privateuserh
/
MangaWeb
like
0
Sleeping
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
refs/pr/1
MangaWeb
/
src
/
lib
/
sleep.ts
jbilcke-hf
HF Staff
fixed upscaling
f5d8038
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)
})