(forceUpdate?: boolean)
| 59 | ); |
| 60 | |
| 61 | export const getFetchOptions = (forceUpdate?: boolean): RequestInit => |
| 62 | forceUpdate ? { cache: "reload" } : {}; |
| 63 | |
| 64 | const _cache = new Map(); |
| 65 |
nothing calls this directly
no outgoing calls
no test coverage detected