(inputList: any[])
| 185 | } |
| 186 | |
| 187 | function convertNestedToJsonForExcelInPlace(inputList: any[]): any[] { |
| 188 | for (let i = 0; i < inputList.length; i++) { |
| 189 | inputList[i] = convertNestedItemToJsonForExcel(inputList[i]); |
| 190 | } |
| 191 | |
| 192 | return inputList; |
| 193 | } |
| 194 | |
| 195 | |
| 196 | function removeNonObjects(data: any[]): any[] { |
no test coverage detected