ps/Modules/Cole.PowerShell.Developer/Public/Remove-TextStyle.ps1
2023-05-30 22:51:22 -07:00

12 lines
179 B
PowerShell

function Remove-TextStyle {
param (
[Parameter(Mandatory = $true)]
$Text
)
$esc = [char]27
$regex = "$esc"
return $Text -replace $regex,''
}