(maxResponseSize: number)
| 447 | } |
| 448 | |
| 449 | function throwBodyTooLargeError(maxResponseSize: number): never { |
| 450 | throw new RuntimeError( |
| 451 | RuntimeErrorCode.FETCH_RESPONSE_BODY_TOO_LARGE, |
| 452 | ngDevMode && |
| 453 | `Fetch response body exceeded the configured buffer limit (${maxResponseSize} bytes).`, |
| 454 | ); |
| 455 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…