# Functions
Cells returns the cells wrapped into individual lines according to the specified width and wrapping mode.
ValidCells validates the provided cells for wrapping.
ValidText validates the provided text for wrapping.
# Constants
AtRunes is a wrapping mode where if the width of the text crosses the width of the canvas, wrapping is performed at rune boundaries.
AtWords is a wrapping mode where if the width of the text crosses the width of the canvas, wrapping is performed at word boundaries.
Never is the default wrapping mode, which disables line wrapping.
# Type aliases
Mode sets the wrapping mode.