Determine if the string is not empty.

Twine\Str::isNotEmpty() : bool

Examples

$string = new Twine\Str('john pinkerton');

        $string->isNotEmpty(); // Returns true
$string = new Twine\Str('');

        $string->isNotEmpty(); // Returns false