(diffHash)
| 179 | } |
| 180 | |
| 181 | function isDuplicateDiff(diffHash) { |
| 182 | const state = readState(); |
| 183 | const recent = Array.isArray(state.recentDiffHashes) ? state.recentDiffHashes : []; |
| 184 | return recent.includes(diffHash); |
| 185 | } |
| 186 | |
| 187 | function recordPR(diffHash) { |
| 188 | const state = readState(); |
no test coverage detected