Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
ruslanmv
/
ai-story-teller
like
8
Runtime error
App
Files
Files
Community
1
ab2e706
ai-story-teller
/
src
/
lib
/
sleep.ts
ruslanmv
First commit
5f663a9
10 months ago
raw
Copy download link
history
blame
Safe
150 Bytes
export
const
sleep
=
async
(
durationInMs:
number
) =>
new
Promise
(
(
resolve
) =>
{
setTimeout
(
() =>
{
resolve
(
true
)
}, durationInMs)
})