* @readonly * @type {number}
()
| 157 | * @type {number} |
| 158 | */ |
| 159 | get exceeds() { |
| 160 | if (!isHistogram(this)) |
| 161 | throw new ERR_INVALID_THIS('Histogram'); |
| 162 | return this[kHandle]?.exceeds(); |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | * @readonly |
nothing calls this directly
no test coverage detected