* Processes the provided label. * @param {string} label label
(label)
| 161 | * @param {string} label label |
| 162 | */ |
| 163 | time(label) { |
| 164 | /** @type {TimersMap} */ |
| 165 | this[TIMERS_SYMBOL] = this[TIMERS_SYMBOL] || new Map(); |
| 166 | this[TIMERS_SYMBOL].set(label, process.hrtime()); |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * Processes the provided label. |