• Clear the manga cache.

    Returns void

    export function clearMangaCache(): void {
    Object.keys(mangaCache).forEach((key) => {
    delete mangaCache[key];
    });
    }