()
| 882 | Effect.promise(() => { |
| 883 | calls.count++; |
| 884 | const run = async () => store.get(String(id)) ?? null; |
| 885 | return wrapGet ? wrapGet(run) : run(); |
| 886 | }), |
| 887 | set: (id, value) => Effect.sync(() => void store.set(String(id), value)), |
no test coverage detected