(name?: string)
| 47 | } |
| 48 | |
| 49 | clearMarks(name?: string): void { |
| 50 | if (name !== undefined) { |
| 51 | this.marks.delete(name) |
| 52 | } else { |
| 53 | this.marks.clear() |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | now(): number { |
| 58 | return Number(process.hrtime.bigint() / 1000n) / 1000 - this._origin |
no test coverage detected