Domain: amberpublishers.in
Server Adress: 86.38.243.169

privdayz.com

/home/u866425823/domains/tejassolar.co.in/vendor/laravel/prompts/src/Concerns/
Dosya Yükle :
Current File : //home/u866425823/domains/tejassolar.co.in/vendor/laravel/prompts/src/Concerns/Truncation.php

<?php

namespace Laravel\Prompts\Concerns;

use InvalidArgumentException;

trait Truncation
{
    /**
     * Truncate a value with an ellipsis if it exceeds the given width.
     */
    protected function truncate(string $string, int $width): string
    {
        if ($width <= 0) {
            throw new InvalidArgumentException("Width [{$width}] must be greater than zero.");
        }

        return mb_strwidth($string) <= $width ? $string : (mb_strimwidth($string, 0, $width - 1).'…');
    }
}

coded by Privdayz.com - Visit https://privdayz.com/ for more php shells.