// This file is part of helpers4.
// Copyright (C) 2025 baxyz
// SPDX-License-Identifier: LGPL-3.0-or-later
//! ANSI escape sequences: remove them from captured output and build styled text.
//!
//! `strip`, `contains` and `visible_len` deal with text that already has escape sequences (command
//! output, logs); [`Style`] and [`Color`] build the sequences for colors and attributes. Nothing here
//! decides whether a terminal supports colors: that stays with the caller.
pub use Color;
pub use contains;
pub use strip;
pub use Style;
pub use visible_len;