Determine if the string is composed of printable characters.
Twine\Str::isPrintable() : bool
$string = new Twine\Str('john pinkerton');
$string->isPrintable(); // Returns true
$string = new Twine\Str("john\npinkerton");
$string->isPrintable(); // Returns false