Interface Utilities

汎用的な操作を提供します。Provides general-purpose operations.

Hierarchy

  • Utilities

Methods

  • Base64でエンコードされた文字列をバイナリにデコードします。Decodes Base64-encoded strings to binary.

    Returns

    デコードバイナリDecoded binary

    Parameters

    • encoded: string

      Base64でエンコードされた文字列 Base64 encoded string

    Returns Uint8Array

  • 指定されたバイナリをBase64でエンコードします。Encodes the specified string in Base64.

    Returns

    Base64でエンコードされた文字列 Base64 encoded string

    Parameters

    • data: Uint8Array

      エンコードするバイナリデータ binary data to encode

    Returns string

  • 指定された文字列をBase64でエンコードします。Encodes the specified string in Base64.

    Returns

    Base64でエンコードされた文字列 Base64 encoded string

    Parameters

    • data: string

      エンコードする文字列 string to encode

    Returns string

  • 指定された日付を文字列にフォーマットFormat a specified date into a string

    Returns

    フォーマットされた日付文字列Formatted date string

    Parameters

    • date: Date

      文字列としてフォーマットする日付 date to format as string

    • timeZone: string

      結果の出力タイムゾーン output timezone of the result

    • format: string

      JavaのSimpleDateFormat(外部サイト)に準じたフォーマット指定文字列 Format specification string according to the Java SimpleDateFormat(external link)

    Returns string

  • バイナリデータから新しいBlobオブジェクトを作成します。
    Blobは、Google Driveファイルの操作で利用するオブジェクトとなります。
    Creates a new Blob object from binary data.
    Blob is an object used in the manipulation of Google Drive files.

    Returns

    BlobオブジェクトBlob object

    Parameters

    • data: Uint8Array

      バイナリデータBinary data

    Returns Blob

  • バイナリデータと指定されたコンテンツタイプから新しいBlobオブジェクトを作成します。
    Blobは、Google Driveファイルの操作で利用するオブジェクトとなります。
    Creates a new Blob object from binary data and the specified content type.
    Blob is an object used in the manipulation of Google Drive files.

    Returns

    BlobオブジェクトBlob object

    Parameters

    • data: Uint8Array

      バイナリデータBinary data

    • contentType: string

      Blobのコンテンツタイプ content type of the Blob

    Returns Blob

  • バイナリデータと指定されたコンテンツタイプ及び名前から新しいBlobオブジェクトを作成します。
    Blobは、Google Driveファイルの操作で利用するオブジェクトとなります。
    Creates a new Blob object from binary data and the specified content type.
    Blob is an object used in the manipulation of Google Drive files.

    Returns

    BlobオブジェクトBlob object

    Parameters

    • data: Uint8Array

      バイナリデータBinary data

    • contentType: string

      Blobのコンテンツタイプ content type of the Blob

    • name: string

      Blobの名前Blob's name

    Returns Blob

  • 文字列から新しいBlobオブジェクトを作成します。
    Blobは、Google Driveファイルの操作で利用するオブジェクトとなります。
    Creates a new Blob object from a string.
    Blob is an object used in the manipulation of Google Drive files.

    Returns

    BlobオブジェクトBlob object

    Parameters

    • data: string

      Blobにする文字列(UTF-8を想定しています)string to be Blob (Supposed to be UTF-8)

    Returns Blob

  • 文字列と指定されたコンテンツタイプから新しいBlobオブジェクトを作成します。
    Blobは、Google Driveファイルの操作で利用するオブジェクトとなります。
    Creates a new Blob object from a string and the specified content type.
    Blob is an object used in the manipulation of Google Drive files.

    Returns

    BlobオブジェクトBlob object

    Parameters

    • data: string

      Blobにする文字列(UTF-8を想定しています)string to be Blob (Supposed to be UTF-8)

    • contentType: string

      Blobのコンテンツタイプ content type of the Blob

    Returns Blob

  • 文字列と指定されたコンテンツタイプ及び名前から新しいBlobオブジェクトを作成します。
    Blobは、Google Driveファイルの操作で利用するオブジェクトとなります。
    Creates a new Blob object from a string and the specified content type and name.
    Blob is an object used in the manipulation of Google Drive files.

    Returns

    BlobオブジェクトBlob object

    Parameters

    • data: string

      Blobにする文字列(UTF-8を想定しています)string to be Blob (Supposed to be UTF-8)

    • contentType: string

      Blobのコンテンツタイプ content type of the Blob

    • name: string

      Blobの名前Blob's name

    Returns Blob

  • 指定された時間スリープします。Sleeps for the specified time.

    Parameters

    • ms: number

      スリープする時間(単位:ミリ秒) sleep time (in milliseconds)

    Returns void