Private/Test-Numeric.ps1

function Test-Numeric ($x) {
    try {
        0 + $x | Out-Null
        return $true
    } catch {
        return $false
    }
}