(rows = [])
| 430 | } |
| 431 | |
| 432 | function getCurrentMailIds(rows = []) { |
| 433 | const ids = new Set(); |
| 434 | const sourceRows = rows.length ? rows : collectThreadRows(); |
| 435 | sourceRows.forEach((row, index) => { |
| 436 | ids.add(getRowFingerprint(row, index)); |
| 437 | }); |
| 438 | return ids; |
| 439 | } |
| 440 | |
| 441 | function rowMatchesFilters(preview, senderFilters, subjectFilters) { |
| 442 | const senderText = normalizeText(preview.sender).toLowerCase(); |
no test coverage detected