Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Joseph-hf/ai-comic-generator
Henhouse
/
workflow-comics
like
0
Sleeping
App
Files
Files
Community
317076a
workflow-comics
/
src
/
lib
/
sleep.ts
zanekwok
init
450060f
9 months ago
raw
Copy download link
history
blame
Safe
150 Bytes
export
const
sleep
=
async
(
durationInMs:
number
) =>
new
Promise
(
(
resolve
) =>
{
setTimeout
(
() =>
{
resolve
(
true
)
}, durationInMs)
})