@trashpanda001/helpers
    Preparing search index...

    Function urlDecode64

    • Decodes a URL-safe base-64 string into a binary string.

      Parameters

      • data: string

        the base-64 string to decode

      Returns string

      the decoded binary string

      import { urlDecode64 } from "@trashpanda001/helpers/string"

      urlDecode64("QS9CK0M")
      // "A/B+C"
      urlDecode64("QS9CK0M=")
      // "A/B+C"