Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/ultimate-ai.codeskitter.site/vendor/spatie/regex/src/Helpers/
Upload File :
Current File : /home/users/unlimited/www/ultimate-ai.codeskitter.site/vendor/spatie/regex/src/Helpers/Str.php

<?php

namespace Spatie\Regex\Helpers;

class Str
{
    public static function endsWith(string $haystack, string $needle): bool
    {
        if (strlen($needle) === 0) {
            return true;
        }

        return str_ends_with($haystack, $needle);
    }
}