Private/Other/Test-CommandCurlExe.ps1

function Test-CommandCurlExe {
    [CmdletBinding()]
    param ()
    
    if (Get-Command 'curl.exe' -ErrorAction SilentlyContinue) {
        Return $true
    }
    else {
        Return $false
    }
}