* @readonly * @type {bigint}
()
| 167 | * @type {bigint} |
| 168 | */ |
| 169 | get exceedsBigInt() { |
| 170 | if (!isHistogram(this)) |
| 171 | throw new ERR_INVALID_THIS('Histogram'); |
| 172 | return this[kHandle]?.exceedsBigInt(); |
| 173 | } |
| 174 | |
| 175 | /** |
| 176 | * @readonly |
nothing calls this directly
no test coverage detected