(...args: ReadonlyArray<any>)
| 533 | * @since 2.0.0 |
| 534 | */ |
| 535 | export const log = (...args: ReadonlyArray<any>): Effect.Effect<void> => |
| 536 | consoleWith((console) => |
| 537 | effect.sync(() => { |
| 538 | console.log(...args) |
| 539 | }) |
| 540 | ) |
| 541 | |
| 542 | /** |
| 543 | * Displays tabular data as a formatted table in the console, optionally limited to selected properties. |
no test coverage detected