Files
Resolve-DSCConfigurationData/Private/Test-ConfigurationDataExpression.ps1
Torsten Brendgen 4b83abc7f2 initial Commit
2026-06-27 00:36:04 +02:00

16 lines
308 B
PowerShell

function Test-ConfigurationDataExpression {
[CmdletBinding()]
Param(
[AllowNull()]
[string]
$Value
)
if([string]::IsNullOrWhiteSpace($Value)){
return $false
}
$Trimmed = $Value.Trim()
return $Trimmed.StartsWith("[") -and $Trimmed.EndsWith("]")
}