(storeId: string)
| 245 | () => { |
| 246 | const stores = new Map<string, Map<string, readonly [object, expires: number | null]>>() |
| 247 | const getStore = (storeId: string) => { |
| 248 | let store = stores.get(storeId) |
| 249 | if (store === undefined) { |
| 250 | store = new Map<string, readonly [object, expires: number | null]>() |
| 251 | stores.set(storeId, store) |
| 252 | } |
| 253 | return store |
| 254 | } |
| 255 | return BackingPersistence.of({ |
| 256 | make: (storeId) => |
| 257 | Effect.clockWith((clock) => { |
no test coverage detected