Decodes a URL-safe base-64 string into a binary string.
the base-64 string to decode
the decoded binary string
import { urlDecode64 } from "@trashpanda001/helpers/string"urlDecode64("QS9CK0M")// "A/B+C"urlDecode64("QS9CK0M=")// "A/B+C" Copy
import { urlDecode64 } from "@trashpanda001/helpers/string"urlDecode64("QS9CK0M")// "A/B+C"urlDecode64("QS9CK0M=")// "A/B+C"
Decodes a URL-safe base-64 string into a binary string.