MCPcopy Create free account
hub / github.com/Effect-TS/effect / table

Function table

packages/effect/src/Console.ts:574–579  ·  view source on GitHub ↗
(tabularData: any, properties?: ReadonlyArray<string>)

Source from the content-addressed store, hash-verified

572 * @since 2.0.0
573 */
574export 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.

Callers

nothing calls this directly

Calls 3

consoleWithFunction · 0.85
tableMethod · 0.80
syncMethod · 0.45

Tested by

no test coverage detected