(key: string)
| 110 | // concurrent `loadEsmModule` calls on the legacy async path. Goes away |
| 111 | // once min-Node ≥ v24.9 makes that path obsolete. |
| 112 | hasMutex(key: string): boolean { |
| 113 | return this.mutex.has(key); |
| 114 | } |
| 115 | awaitMutex(key: string): Promise<void> | undefined { |
| 116 | return this.mutex.get(key); |
| 117 | } |
no outgoing calls
no test coverage detected