Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Hotalen
/
AI-Comic-Factory-2
like
2
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
96d5df7
AI-Comic-Factory-2
/
src
/
lib
/
sleep.ts
Hotalen
Upload 206 files
4baf4b0
verified
about 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)
})