(args: unknown[])
| 28 | * Format arguments array to a string for display |
| 29 | */ |
| 30 | export function formatArgs(args: unknown[]): string { |
| 31 | return args.map((a) => formatArg(a)).join(', ') |
| 32 | } |
| 33 | |
| 34 | export interface ServerActionLogInfo { |
| 35 | functionName: string |
no test coverage detected