From 475ea82d4ac93184822ce82972ce2f2cecbc7767 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Mon, 18 Aug 2025 14:51:56 -0700 Subject: [PATCH] Remove outdated documentation. --- src/lib/vault/index.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/lib/vault/index.ts b/src/lib/vault/index.ts index 9de9ea3..2932522 100644 --- a/src/lib/vault/index.ts +++ b/src/lib/vault/index.ts @@ -12,9 +12,6 @@ type Task = { resolve: (value: any) => void } -/** -* Processes a queue of tasks using Web Workers. -*/ export class Vault { static #instances: Vault[] = [] static get instances (): Vault[] { return this.#instances } @@ -26,11 +23,6 @@ export class Vault { #url: string #worker: Worker | NodeWorker - /** - * Creates a Web Worker from a stringified script. - * - * @param {string} worker - Stringified worker class body - */ constructor () { this.#isIdle = true this.#isTerminated = false -- 2.47.3