import { database } from "../../Database/IDB/chapters"; import manga from "$stores/manga"; export const pruneAllManga = async () => { const all = await database.chapters.toArray(); const ids = all.map((m) => m.id); manga.set(""); await database.chapters.bulkDelete(ids); };