initial Commit
This commit is contained in:
13
Private/Get-ConfigurationDataMapValue.ps1
Normal file
13
Private/Get-ConfigurationDataMapValue.ps1
Normal file
@@ -0,0 +1,13 @@
|
||||
function Get-ConfigurationDataMapValue {
|
||||
[CmdletBinding()]
|
||||
Param(
|
||||
[Parameter(Mandatory=$true)]
|
||||
$Map,
|
||||
|
||||
[Parameter(Mandatory=$true)]
|
||||
[string]
|
||||
$Key
|
||||
)
|
||||
|
||||
return $Map[$Key]
|
||||
}
|
||||
Reference in New Issue
Block a user