Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Jax
0.1.4
MustachePlaceholders/private/Test-IsOrderedDictionary.ps1
function
Test-IsOrderedDictionary
{
param
(
$obj
)
return
$obj
-is
[System.Collections.Specialized.OrderedDictionary]
}