Determine if the string is empty.

Twine\Str::isEmpty() : bool

Examples

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

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

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