Skip to main content

harn_vm/text/
mod.rs

1//! Shared text utilities.
2//!
3//! These are plain string helpers with no VM dependency; they live here
4//! because `harn-vm` is the lowest crate reachable from every consumer
5//! (`harn-cli`, `harn-hostlib`, `harn-lint`), and a leaf crate of their own
6//! would not earn its keep for three small modules.
7
8pub mod ansi;
9pub mod case;
10pub mod truncate;
11
12pub use ansi::strip_ansi;
13pub use truncate::{clip_end, truncate_end, truncate_end_bytes, truncate_start};