//! Vendored from text-splitter v0.30.1 (MIT, © 2023 Benjamin Brandt). See ATTRIBUTIONS.md.
use ChunkSizer;
/// Used for splitting a piece of text into chunks based on the number of
/// characters in each chunk.
///
/// ```text
/// let splitter = TextSplitter::new(10);
/// ```
;