icinga-powershell-framework/lib/core/tools/Set-NumericNegative.psm1

11 lines
No EOL
115 B
PowerShell

function Set-NumericNegative()
{
param(
$Value
);
$Value = $Value * -1;
return $Value;
}