* Clamp a high water mark to [1, MAX_SAFE_INTEGER]. * @param {number} value * @returns {number}
(value)
| 51 | * @returns {number} |
| 52 | */ |
| 53 | function clampHWM(value) { |
| 54 | return MathMax(1, MathMin(NumberMAX_SAFE_INTEGER, value)); |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Register a handler for an AbortSignal, handling the already-aborted case. |
no outgoing calls
no test coverage detected
searching dependent graphs…