(label?: string)
| 257 | * @since 2.0.0 |
| 258 | */ |
| 259 | export const countReset = (label?: string): Effect.Effect<void> => |
| 260 | consoleWith((console) => |
| 261 | effect.sync(() => { |
| 262 | console.countReset(label) |
| 263 | }) |
| 264 | ) |
| 265 | |
| 266 | /** |
| 267 | * Writes a debug message through the current `Console` service. |
nothing calls this directly
no test coverage detected