()
| 190 | } |
| 191 | |
| 192 | function nowMs(): number { |
| 193 | return typeof performance !== 'undefined' && typeof performance.now === 'function' |
| 194 | ? performance.now() |
| 195 | : Date.now() |
| 196 | } |
| 197 | |
| 198 | export function writeDiffToTerminal( |
| 199 | terminal: Terminal, |
no outgoing calls
no test coverage detected