I am a bit confused with regards to availability of Caches API on mobile devices.
https://developer.mozilla.org/en-US/docs/Web/API/CacheStorage
Documentation states this API is available on both service worker scope and window scope.
I can clearly access it on desktop's Chrome without issues.
Now whenever I do feature detection on Android's Chrome I get undefined as if feature is not available.
I tried to detect this way:
if ('caches' in window)...
if ('caches' in self)...
calling from console log via connected device etc
What do I miss?
PS: I understand Safari has very basic implementation so I expected this to go wrong with Safari, but here I am testing it with Chrome on Android;/