* Increase (or reset) counter total * @param {number} amount amount to increase * @param {boolean} reset use amount as new value * @param {boolean} inMB use megabytes
(amount, reset = false, inMB = false)
| 1189 | * @param {boolean} inMB use megabytes |
| 1190 | */ |
| 1191 | total (amount, reset = false, inMB = false) { |
| 1192 | this.#doCount('total', amount, reset, inMB) |
| 1193 | } |
| 1194 | |
| 1195 | /** |
| 1196 | * Run callback when ready |
no test coverage detected