* Increase (or reset) counter current value * @param {number} amount amount to increase * @param {boolean} reset use amount as new value * @param {boolean} inMB use megabytes
(amount = 1, reset = false, inMB = false)
| 1179 | * @param {boolean} inMB use megabytes |
| 1180 | */ |
| 1181 | current (amount = 1, reset = false, inMB = false) { |
| 1182 | this.#doCount('current', amount, reset, inMB) |
| 1183 | } |
| 1184 | |
| 1185 | /** |
| 1186 | * Increase (or reset) counter total |
no test coverage detected