(store, format)
| 7 | import {emptyDomain, keys} from "./storage_FIXTURE.js"; |
| 8 | |
| 9 | function supportsFormat(store, format) { |
| 10 | try { |
| 11 | store.format = format; |
| 12 | } |
| 13 | catch { |
| 14 | } |
| 15 | return store.format === format; |
| 16 | } |
| 17 | |
| 18 | const path = "test"; |
| 19 | let store = storage.open({path}); |