(data: any)
| 14 | } |
| 15 | |
| 16 | function getJsonSize(data: any): number { |
| 17 | if (data === undefined) { |
| 18 | return 'undefined'.length |
| 19 | } |
| 20 | const size = JSON.stringify(data).length |
| 21 | return size |
| 22 | } |
| 23 | |
| 24 | function splitString(params: { |
| 25 | data: string |
no outgoing calls
no test coverage detected