1
2
3
4
5
6
7
8
9
export const rssResetCache = (
rssCache: Record<string, {
lastEntry: string | undefined;
}>,
) => {
for (const key of Object.keys(rssCache)) {
delete rssCache[key];
}
};