(storeId: string)
| 327 | () => { |
| 328 | const stores = new Map<string, Map<string, readonly [unknown, expires: number | null]>>() |
| 329 | const getStore = (storeId: string) => { |
| 330 | let store = stores.get(storeId) |
| 331 | if (store === undefined) { |
| 332 | store = new Map<string, readonly [unknown, expires: number | null]>() |
| 333 | stores.set(storeId, store) |
| 334 | } |
| 335 | return store |
| 336 | } |
| 337 | return BackingPersistence.of({ |
| 338 | [BackingPersistenceTypeId]: BackingPersistenceTypeId, |
| 339 | make: (storeId) => |
no test coverage detected