()
| 61 | * ``` |
| 62 | */ |
| 63 | export function getCache() { |
| 64 | const namespace = cacheNamespaceStorage.getStore()?.namespace; |
| 65 | if (namespace) { |
| 66 | return getNamespacedCache(namespace); |
| 67 | } |
| 68 | return getCacheInstance(); |
| 69 | } |
| 70 | |
| 71 | function getCacheInstance() { |
| 72 | if (!cacheInstance) { |
no test coverage detected
searching dependent graphs…