Skip to content

Commit

Permalink
Update AnsiString.php
Browse files Browse the repository at this point in the history
  • Loading branch information
inxilpro committed Apr 13, 2024
1 parent cad2be5 commit 3d1a408
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/AnsiString.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,6 @@ public function __construct(string $input)
$this->chars = $this->parse($input);
}

// public function wordWrap($characters = 75, $break = "\n", $cutLongWords = false)
// {
// $chars = [];
// $buffer = '';
//
// foreach ($this->chars as $index => $char) {
// $current = $char->value;
// $next = $this->chars[$index + 1]->value ?? '';
//
// $buffer .= $current;
// }
// }

public function __toString(): string
{
$result = '';
Expand Down

0 comments on commit 3d1a408

Please sign in to comment.