Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
understanding
/
Ping
like
0
Building
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b23d199
Ping
/
dist
/
lib
/
delay.js
understanding
Upload 41 files
ba5c923
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
185 Bytes
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
delay
=
void
0
;
const
delay
= (
ms
) =>
new
Promise
(
(
r
) =>
setTimeout
(r, ms));
exports
.
delay
= delay;