ps/Modules/Cole.PowerShell.Developer/Public/Remove-TextStyle.ps1

12 lines
179 B
PowerShell
Raw Normal View History

2023-05-30 22:51:22 -07:00
function Remove-TextStyle {
param (
[Parameter(Mandatory = $true)]
$Text
)
$esc = [char]27
$regex = "$esc"
return $Text -replace $regex,''
}