(msg: string, ...args: any[])
| 4 | * @param {...any} args - Additional arguments to log. |
| 5 | */ |
| 6 | export function log(msg: string, ...args: any[]) { |
| 7 | const time = new Date().toLocaleTimeString("en-US", { hour12: false }); |
| 8 | console.log(`[${time}] ${msg}`, ...args); |
| 9 | } |
no outgoing calls
no test coverage detected