(label?: string)
| 218 | * @since 2.0.0 |
| 219 | */ |
| 220 | export const count = (label?: string): Effect.Effect<void> => |
| 221 | consoleWith((console) => |
| 222 | effect.sync(() => { |
| 223 | console.count(label) |
| 224 | }) |
| 225 | ) |
| 226 | |
| 227 | /** |
| 228 | * Resets the counter associated with the specified label back to zero. |
no test coverage detected