-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcacheDelete.mjs
29 lines (24 loc) · 1 KB
/
cacheDelete.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// @ts-check
/**
* @import { CacheEventMap, CacheKey } from "./Cache.mjs"
* @import { CacheKeyMatcher } from "./types.mjs"
*/
import Cache from "./Cache.mjs";
import cacheEntryDelete from "./cacheEntryDelete.mjs";
/**
* Deletes {@link Cache.store cache store} entries, dispatching the
* {@linkcode Cache} event {@link CacheEventMap.delete `delete`}. Useful after a
* user logs out.
* @param {Cache} cache Cache to update.
* @param {CacheKeyMatcher} [cacheKeyMatcher] Matches
* {@link CacheKey cache keys} to delete. By default all are matched.
*/
export default function cacheDelete(cache, cacheKeyMatcher) {
if (!(cache instanceof Cache))
throw new TypeError("Argument 1 `cache` must be a `Cache` instance.");
if (cacheKeyMatcher !== undefined && typeof cacheKeyMatcher !== "function")
throw new TypeError("Argument 2 `cacheKeyMatcher` must be a function.");
for (const cacheKey in cache.store)
if (!cacheKeyMatcher || cacheKeyMatcher(cacheKey))
cacheEntryDelete(cache, cacheKey);
}