Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
huggingface
/
inf-playground-canvas
like
5
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a76eef5
inf-playground-canvas
/
src
/
lib
/
utils
/
sleep.ts
Thomas G. Lopes
Custom endpoints (#72)
97c4991
unverified
7 months ago
raw
Copy download link
history
blame
101 Bytes
export
async
function
sleep
(
ms:
number
) {
return
new
Promise
(
resolve
=>
setTimeout
(resolve, ms));
}