(fn)
| 61 | } |
| 62 | |
| 63 | function extractSilent(fn) { |
| 64 | pauseObserve() |
| 65 | fn() |
| 66 | |
| 67 | // nextTick will run **after** MutationObserver callbacks |
| 68 | nextTick(startObserve) |
| 69 | } |
| 70 | |
| 71 | let observer = new MutationObserver(mutations => { |
| 72 | mutations.slice(0, MAX_MUTATIONS).forEach(mutation => { |
no test coverage detected