Commit 15eb289
authored
Implement explicit snapshots (#110)
See Level/community#118. TLDR:
```js
await db.put('example', 'before')
const snapshot = db.snapshot()
await db.put('example', 'after')
await db.get('example', { snapshot })) // Returns 'before'
await snapshot.close()
```
Category: addition1 parent 812fe88 commit 15eb289
4 files changed
+341
-182
lines changed
0 commit comments