pub fn wrap(text: &str, width: usize) -> Vec<String>
Wraps text to lines no wider than width columns (word-aware).
text
width
Words longer than width are hard-split. A width of zero yields the original text as a single line.