10 lines
239 B
PowerShell
10 lines
239 B
PowerShell
function Test-ConfigurationDataMap {
|
|
[CmdletBinding()]
|
|
Param(
|
|
[AllowNull()]
|
|
$Value
|
|
)
|
|
|
|
return ($Value -is [System.Collections.Hashtable]) -or ($Value -is [System.Collections.Specialized.OrderedDictionary])
|
|
}
|