()
| 86 | } |
| 87 | |
| 88 | async getDeleteEntries() { |
| 89 | await this.initialized; |
| 90 | const result = []; |
| 91 | for (const fingerprint in this.data.changeLog) { |
| 92 | if (this.data.changeLog[fingerprint].type === DELETE) { |
| 93 | result.push(fingerprint); |
| 94 | } |
| 95 | } |
| 96 | return result; |
| 97 | } |
| 98 | |
| 99 | mute(muted) { |
| 100 | this.muted = muted; |
no test coverage detected