(values: unknown[], normalizeDepth: number, normalizeMaxBreadth: number)
| 17 | * @returns The formatted string. |
| 18 | */ |
| 19 | export function formatConsoleArgs(values: unknown[], normalizeDepth: number, normalizeMaxBreadth: number): string { |
| 20 | return 'util' in GLOBAL_OBJ && typeof (GLOBAL_OBJ as GlobalObjectWithUtil).util.format === 'function' |
| 21 | ? (GLOBAL_OBJ as GlobalObjectWithUtil).util.format(...values) |
| 22 | : safeJoinConsoleArgs(values, normalizeDepth, normalizeMaxBreadth); |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * Joins the given values into a string. |
no test coverage detected