* @readonly * @type {bigint}
()
| 117 | * @type {bigint} |
| 118 | */ |
| 119 | get minBigInt() { |
| 120 | if (!isHistogram(this)) |
| 121 | throw new ERR_INVALID_THIS('Histogram'); |
| 122 | return this[kHandle]?.minBigInt(); |
| 123 | } |
| 124 | |
| 125 | /** |
| 126 | * @readonly |
nothing calls this directly
no test coverage detected