MCPcopy Index your code
hub / github.com/Effect-TS/effect / group

Function group

packages/effect/src/internal/defaultServices/console.ts:55–59  ·  view source on GitHub ↗
(options)

Source from the content-addressed store, hash-verified

53 })
54 },
55 group(options) {
56 return options?.collapsed ?
57 core.sync(() => console.groupCollapsed(options?.label)) :
58 core.sync(() => console.group(options?.label))
59 },
60 groupEnd: core.sync(() => {
61 console.groupEnd()
62 }),

Callers

nothing calls this directly

Calls 3

syncMethod · 0.80
groupCollapsedMethod · 0.80
groupMethod · 0.65

Tested by

no test coverage detected