()
| 53 | }); |
| 54 | |
| 55 | const getResult = () => |
| 56 | Effect.gen(function* () { |
| 57 | if (!cachedResult) { |
| 58 | const doc = yield* getDoc(); |
| 59 | cachedResult = yield* extract(doc); |
| 60 | } |
| 61 | return cachedResult; |
| 62 | }); |
| 63 | |
| 64 | const getVercelDoc = () => |
| 65 | Effect.gen(function* () { |
no test coverage detected