(param: any)
| 826 | } |
| 827 | |
| 828 | function undefinedToNull(param: any) { |
| 829 | if (param === void 0) { |
| 830 | return null; |
| 831 | } else { |
| 832 | return param; |
| 833 | } |
| 834 | } |
| 835 | |
| 836 | function computeMessageParams(type: MessageType, params: any[]): any | any[] | null { |
| 837 | let result: any | any[] | null; |
no outgoing calls
no test coverage detected