()
| 54958 | return this.samples > 0 ? this.time / this.samples : 0; |
| 54959 | } |
| 54960 | getHz() { |
| 54961 | return this.time > 0 ? this.samples / (this.time / 1000) : 0; |
| 54962 | } |
| 54963 | reset() { |
| 54964 | this.time = 0; |
| 54965 | this.count = 0; |
no outgoing calls
no test coverage detected