swc/bundler/tests/.cache/deno/a296c325ce67cf5d189b8a41805912eab77d371a.ts
강동윤 d60c3242af
fix(swc): Fix bugs (#1739)
swc_bundler:
 - Fix cycle detection for complex circular imports. (denoland/deno#10752)

swc_ecma_transforms_typescript:
 - Allow using large values for an enum variant.
2021-05-25 14:30:17 +09:00

18 lines
573 B
TypeScript

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/rest/cleanup_queues.ts
import { rest } from "./rest.ts";
/** Cleans up the queues by checking if there is nothing left and removing it. */
export function cleanupQueues() {
for (const [key, queue] of rest.pathQueues) {
rest.eventHandlers.debug?.("loop", "Running for of loop in cleanupQueues function.");
if (queue.length) continue;
// REMOVE IT FROM CACHE
rest.pathQueues.delete(key);
}
// NO QUEUE LEFT, DISABLE THE QUEUE
if (!rest.pathQueues.size) rest.processingQueue = false;
}