refacto: moves function to being used on internal test suite only

This commit is contained in:
Nuno Maduro
2024-01-25 14:13:18 +00:00
parent 2562d36518
commit 9c077ed352
2 changed files with 5 additions and 13 deletions

View File

@ -39,3 +39,8 @@ function helper_returns_string()
}
dataset('dataset_in_pest_file', ['A', 'B']);
function removeAnsiEscapeSequences(string $input): ?string
{
return preg_replace('#\\x1b[[][^A-Za-z]*[A-Za-z]#', '', $input);
}