(cache)
| 24231 | }; |
| 24232 | } |
| 24233 | function retainCache(cache) { |
| 24234 | cache.controller.signal.aborted && |
| 24235 | console.warn( |
| 24236 | "A cache instance was retained after it was already freed. This likely indicates a bug in React." |
| 24237 | ); |
| 24238 | cache.refCount++; |
| 24239 | } |
| 24240 | function releaseCache(cache) { |
| 24241 | cache.refCount--; |
| 24242 | 0 > cache.refCount && |
no outgoing calls
no test coverage detected
searching dependent graphs…