From: Chris Duncan Date: Mon, 18 Aug 2025 21:51:56 +0000 (-0700) Subject: Remove outdated documentation. X-Git-Tag: v0.10.5~41^2~56 X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=475ea82d4ac93184822ce82972ce2f2cecbc7767;p=libnemo.git Remove outdated documentation. --- 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