(objects: any[])
| 56 | let loggerOutput: LoggerOutput = consoleLoggerOutput; |
| 57 | |
| 58 | function objectsToString(objects: any[]): string { |
| 59 | return objects.reduce( |
| 60 | (accumulator, value) => accumulator + value.toString(), |
| 61 | '' |
| 62 | ); |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * A Console API like class for logging in a GDevelop game. |