(value: unknown, limit = MAX_FUNCTION_INLINE_BYTES)
| 766 | } |
| 767 | |
| 768 | function clampInlineBytes(value: unknown, limit = MAX_FUNCTION_INLINE_BYTES): number { |
| 769 | const requested = getPositiveNumber(value) |
| 770 | return Math.min(requested ?? limit, limit) |
| 771 | } |
| 772 | |
| 773 | function getBrokerFileArgs(args: unknown): { |
| 774 | file: unknown |
no test coverage detected