(journal: Journal)
| 31 | |
| 32 | /** @internal */ |
| 33 | export const commitJournal = (journal: Journal) => { |
| 34 | for (const entry of journal) { |
| 35 | Entry.commit(entry[1]) |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * Analyzes the journal, determining whether it is valid and whether it is |