Function urlGet

  • Download url using the curl command line utility.

    Parameters

    Returns string | null

  • Download url using the curl command line utility.

    Parameters

    • url: string
    • options: UrlGetOptions & {
          binary: true;
          full?: false;
      }

    Returns ArrayBuffer | null

  • Download url using the curl command line utility.

    Parameters

    • url: string
    • options: UrlGetOptions & {
          binary?: false;
          full: true;
      }

    Returns UrlGetResponse<string>

  • Download url using the curl command line utility.

    Parameters

    • url: string
    • options: UrlGetOptions & {
          binary: true;
          full: true;
      }

    Returns UrlGetResponse<ArrayBuffer>

Generated using TypeDoc