]> git.codecow.com Git - libnemo.git/commitdiff
Remove outdated documentation.
authorChris Duncan <chris@zoso.dev>
Mon, 18 Aug 2025 21:51:56 +0000 (14:51 -0700)
committerChris Duncan <chris@zoso.dev>
Mon, 18 Aug 2025 21:51:56 +0000 (14:51 -0700)
src/lib/vault/index.ts

index 9de9ea3bd4a62fa9f74e1043df228058858ce5f0..293252228d6699968ef94551f2616b7e0098feaa 100644 (file)
@@ -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