(id)
| 220 | }) |
| 221 | }, |
| 222 | async readDocumentBase64(id) { |
| 223 | const data = await readUpdate(id) |
| 224 | return data ? { id, data: Buffer.from(data).toString("base64") } : null |
| 225 | }, |
| 226 | async readMapObject(documentId, mapName) { |
| 227 | const doc = await loadDoc(documentId) |
| 228 | if (!doc) return null |
nothing calls this directly
no test coverage detected