* @returns {void}
()
| 298 | * @returns {void} |
| 299 | */ |
| 300 | recordDelta() { |
| 301 | if (this[kRecordable] === undefined) |
| 302 | throw new ERR_INVALID_THIS('RecordableHistogram'); |
| 303 | this[kHandle]?.recordDelta(); |
| 304 | } |
| 305 | |
| 306 | /** |
| 307 | * @param {RecordableHistogram} other |
no outgoing calls
no test coverage detected