Private/Test-IsAppleSilicon.ps1

function Test-IsAppleSilicon {
    $arm = /usr/sbin/sysctl -n hw.optional.arm64 2>$null
    return $arm -eq "1"
}