(inputList: any[])
| 181 | return processedDict |
| 182 | } |
| 183 | function convertNestedToJsonForExcel(inputList: any[]): any[] { |
| 184 | return inputList.map(convertNestedItemToJsonForExcel); |
| 185 | } |
| 186 | |
| 187 | function convertNestedToJsonForExcelInPlace(inputList: any[]): any[] { |
| 188 | for (let i = 0; i < inputList.length; i++) { |