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