()
| 601 | } |
| 602 | |
| 603 | runProcessIdleTimeout() { |
| 604 | setTimeout(() => { |
| 605 | window.requestIdleCallback(() => { |
| 606 | this.processAndCacheData(); |
| 607 | this.runProcessIdleTimeout(); |
| 608 | }); |
| 609 | }, 5000); |
| 610 | } |
| 611 | |
| 612 | async pasteHandler(e?: ClipboardEvent): Promise<void> { |
| 613 | this.pasteActive = true; |
no test coverage detected