(selector: {
platform?: PlatformSelector;
target?: DeviceTarget;
})
| 250 | } |
| 251 | |
| 252 | function isAppleResolutionSelector(selector: { |
| 253 | platform?: PlatformSelector; |
| 254 | target?: DeviceTarget; |
| 255 | }): boolean { |
| 256 | return isApplePlatform(selector.platform); |
| 257 | } |
| 258 | |
| 259 | function readResolveTargetDeviceCache(cacheKey: string): DeviceInfo | undefined { |
| 260 | const cache = resolveTargetDeviceCacheScope.getStore(); |
no test coverage detected