Options
Menu

Index

Functions

Functions

hexDecode

  • hexDecode(value?: string): string
  • Decodes a hexadecimal to UTF-8 string.

    example
    ix.text.hexDecode("666F6F426172");
    // decodes to "fooBar"
    

    Parameters

    • value: string = ""

    Returns string

hexEncode

  • hexEncode(value?: string): string
  • Encodes an UTF-8 string to hexadicmal.

    example
    ix.text.hexEncode("fooBar");
    // encodes to "666F6F426172"
    

    Parameters

    • value: string = ""

    Returns string