(tabularData: any, properties?: ReadonlyArray<string>)
| 572 | * @since 2.0.0 |
| 573 | */ |
| 574 | export const table = (tabularData: any, properties?: ReadonlyArray<string>): Effect.Effect<void> => |
| 575 | consoleWith((console) => |
| 576 | effect.sync(() => { |
| 577 | console.table(tabularData, properties) |
| 578 | }) |
| 579 | ) |
| 580 | |
| 581 | /** |
| 582 | * Starts a scoped timer for `label` and automatically ends it when the Effect scope is finalized. |
nothing calls this directly
no test coverage detected