()
| 992 | Effect.promise(() => { |
| 993 | calls.count++; |
| 994 | const run = async () => store.get(String(id)) ?? null; |
| 995 | return wrapGet ? wrapGet(run) : run(); |
| 996 | }), |
| 997 | set: (id, value) => Effect.sync(() => void store.set(String(id), value)), |
no test coverage detected