Compatibility/src/New-PSObject.ps1

function New-PSObject ([hashtable]$Property) {
    New-Object -Type PSObject -Property $Property
}