@nevware21/ts-utils
    Preparing search index...

    Function decodeBase64

    • Decode a Base64 encoded string

      Parameters

      • value: string

        The Base64 encoded string to decode

      Returns string

      The decoded string

      0.13.0

      decodeBase64("SGVsbG8="); // "Hello"
      decodeBase64("SGVsbG8gV29ybGQ="); // "Hello World"
      decodeBase64(""); // ""