* Append-only write
(entry: ScratchpadEntry)
| 450 | * Append-only write |
| 451 | */ |
| 452 | private append(entry: ScratchpadEntry): void { |
| 453 | appendFileSync(this.filepath, JSON.stringify(entry) + '\n'); |
| 454 | } |
| 455 | |
| 456 | /** |
| 457 | * Parse and validate a single JSONL line. Returns null for malformed or invalid entries. |
no outgoing calls
no test coverage detected