matchAll

inline suspend fun Cache.matchAll(url: String, options: CacheQueryOptions): ReadonlyArray<Response>(source)
inline suspend fun Cache.matchAll(url: String): ReadonlyArray<Response>(source)
inline suspend fun Cache.matchAll(): ReadonlyArray<Response>(source)

The matchAll() method of the Cache interface returns a Promise that resolves to an array of all matching responses in the Cache object.

MDN Reference


inline suspend fun Cache.matchAll(url: URL, options: CacheQueryOptions): ReadonlyArray<Response>(source)
inline suspend fun Cache.matchAll(url: URL): ReadonlyArray<Response>(source)
inline suspend fun Cache.matchAll(request: Request, options: CacheQueryOptions): ReadonlyArray<Response>(source)
inline suspend fun Cache.matchAll(request: Request): ReadonlyArray<Response>(source)