(item: any, options?: any)
| 330 | * @since 2.0.0 |
| 331 | */ |
| 332 | export const dir = (item: any, options?: any): Effect.Effect<void> => |
| 333 | consoleWith((console) => |
| 334 | effect.sync(() => { |
| 335 | console.dir(item, options) |
| 336 | }) |
| 337 | ) |
| 338 | |
| 339 | /** |
| 340 | * Displays an interactive tree of descendant XML or HTML elements, which is particularly useful for inspecting DOM elements in browser environments. |
nothing calls this directly
no test coverage detected