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