()
| 104 | * Avoids unnecessary recalculations. |
| 105 | */ |
| 106 | export function startBatch() { |
| 107 | globalState.inBatch++ |
| 108 | } |
| 109 | |
| 110 | export function endBatch() { |
| 111 | if (--globalState.inBatch === 0) { |
no outgoing calls
no test coverage detected
searching dependent graphs…