* Ensure the storage directory exists.
()
| 80 | * Ensure the storage directory exists. |
| 81 | */ |
| 82 | async function ensureStorageDir(): Promise<void> { |
| 83 | await fs.mkdir(getYjsStorageDir(), { recursive: true }) |
| 84 | } |
| 85 | |
| 86 | function expectedTaskMetaId(id: string): string | null { |
| 87 | return id.startsWith("code:task:") ? id.slice("code:task:".length) : null |
no test coverage detected