(path: string)
| 107 | } |
| 108 | |
| 109 | private versionsDir(path: string): string { |
| 110 | return join(this.root, ".hf-versions", path); |
| 111 | } |
| 112 | |
| 113 | private async appendVersion(path: string, content: string): Promise<void> { |
| 114 | const prior = this._writeLocks.get(path) ?? Promise.resolve(); |
no outgoing calls
no test coverage detected