(h, hook)
| 146 | } |
| 147 | |
| 148 | _stamp(h, hook) { |
| 149 | if (h == null) return; |
| 150 | h[hook] ??= []; |
| 151 | const time = process.hrtime(this._start); |
| 152 | h[hook].push((time[0] * 1e9) + time[1]); |
| 153 | } |
| 154 | |
| 155 | _getActivity(uid, hook) { |
| 156 | const h = this._activities.get(uid); |