* Increase by {number} the total counter * @param {int} number
(number)
| 158 | * @param {int} number |
| 159 | */ |
| 160 | function increaseTotalCounter(number) { |
| 161 | if (storage.statisticsStatus) { |
| 162 | storage.totalCounter += number; |
| 163 | deferSaveOnDisk('totalCounter'); |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | /** |
| 168 | * Increase by one the cleaned counter |
no test coverage detected