(repeatIndex: number)
| 163 | } |
| 164 | |
| 165 | function currentNamespaceIncludesRepeatIndex(repeatIndex: number) { |
| 166 | const namespaceParts = getCurrentCacheNamespace()?.split(':') ?? []; |
| 167 | return namespaceParts.some( |
| 168 | (part, index) => part === 'repeat' && namespaceParts[index + 1] === String(repeatIndex), |
| 169 | ); |
| 170 | } |
| 171 | |
| 172 | function shouldApplyRepeatCacheSuffix(repeatIndex?: number) { |
| 173 | return ( |
no test coverage detected
searching dependent graphs…