formatting pass
This commit is contained in:
+4
-1
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user