(format: string, ...args: unknown[])
| 1010 | * @throws {Error} If an invalid argument type is provided for a format specifier. |
| 1011 | */ |
| 1012 | export function printf(format: string, ...args: unknown[]) { |
| 1013 | const s = sprintf(format, ...args); |
| 1014 | Deno.stdout.writeSync(new TextEncoder().encode(s)); |
| 1015 | } |
no test coverage detected