Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
no1b4me
/
winblows
like
0
Paused
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
main
winblows
/
src
/
helpers
/
ratelimit.js
no1b4me
Upload 20 files
07436b8
verified
8 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
160 Bytes
const
async
=
require
(
'async'
);
const
queue =
async
.
queue
(
(
task, callback
) =>
{
task.
fn
().
then
(callback).
catch
(callback);
},
45
);
module
.
exports
= queue;