Function
buildAppResolutionCacheKey
(scope: AppResolutionCacheScope, target: string)
Source from the content-addressed store, hash-verified
| 70 | } |
| 71 | |
| 72 | function buildAppResolutionCacheKey(scope: AppResolutionCacheScope, target: string): string { |
| 73 | return [scope.platform, scope.deviceId, scope.variant ?? '', target.trim().toLowerCase()].join( |
| 74 | '\0', |
| 75 | ); |
| 76 | } |
| 77 | |
| 78 | function buildAppResolutionCacheScopePrefix(scope: AppResolutionCacheScope): string { |
| 79 | return [scope.platform, scope.deviceId, ''].join('\0'); |
Tested by
no test coverage detected