(...args: ReadonlyArray<any>)
| 360 | * @since 2.0.0 |
| 361 | */ |
| 362 | export const dirxml = (...args: ReadonlyArray<any>): Effect.Effect<void> => |
| 363 | consoleWith((console) => |
| 364 | effect.sync(() => { |
| 365 | console.dirxml(...args) |
| 366 | }) |
| 367 | ) |
| 368 | |
| 369 | /** |
| 370 | * Writes an error-level message to the console, typically displayed with error |
nothing calls this directly
no test coverage detected