Decode a base-64 string into a binary string.
the base-64 string to decode
the decoded binary string
import { decode64 } from "@trashpanda001/helpers/string"decode64("YQ")// "a"decode64("YQ==")// "a" Copy
import { decode64 } from "@trashpanda001/helpers/string"decode64("YQ")// "a"decode64("YQ==")// "a"
Decode a base-64 string into a binary string.