(bodyLimit)
| 627 | } |
| 628 | |
| 629 | function validateBodyLimitOption (bodyLimit) { |
| 630 | if (bodyLimit === undefined) return |
| 631 | if (!Number.isInteger(bodyLimit) || bodyLimit <= 0) { |
| 632 | throw new FST_ERR_ROUTE_BODY_LIMIT_OPTION_NOT_INT(bodyLimit) |
| 633 | } |
| 634 | } |
| 635 | |
| 636 | function validateHandlerTimeoutOption (handlerTimeout) { |
| 637 | if (handlerTimeout === undefined) return |
no outgoing calls
no test coverage detected