Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
understanding
/
pping
like
0
Building
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
fb228c9
pping
/
src
/
lib
/
delay.ts
understanding
Upload 25 files
656c481
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
76 Bytes
export
const
delay
= (
ms:
number
) =>
new
Promise
(
(
r
) =>
setTimeout
(r, ms));