formatting pass

This commit is contained in:
2026-09-02 18:23:22 +02:00
parent d7999785c8
commit 9c3fd4c1a2
7 changed files with 56 additions and 49 deletions
+4 -1
View File
@@ -23,7 +23,10 @@ const lookup = {
};
// Retrieve existing IDs from Stream
const existingIds = db.prepare('SELECT id FROM Stream').all().map(row => row.id);
const existingIds = db
.prepare('SELECT id FROM Stream')
.all()
.map((row) => row.id);
// Create a set of existing IDs for efficient lookup
const idSet = new Set(existingIds);