(item: any, options?: any)
| 255 | * |
| 256 | * @category accessors |
| 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 |
nothing calls this directly
no test coverage detected