Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
radames/ai-town
hackathonM
/
Matou-Garou
like
6
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
9a7111f
Matou-Garou
/
convex
/
util
/
sleep.ts
Jofthomas
HF Staff
bulk
ce8b18b
11 months ago
raw
Copy download link
history
blame
Safe
104 Bytes
export
async
function
sleep
(
ms:
number
) {
return
new
Promise
(
(
resolve
) =>
setTimeout
(resolve, ms));
}