base64Decoding(input: string, encoding?: "std" | "rawstd" | "url" | "rawurl", mode?: "b"): string | ArrayBuffer
Parameter | Type | Description |
input | string | The string to be decoded. |
encoding (optional) | string | Optional; represents the different encoding methods mentioned above; optional values include "std", "rawstd", "url", and "rawurl". If not set, defaults to "std". |
mode (optional) | string | Optional; if not set, the result is of type string. If set to "b", the result is of type ArrayBuffer. |
Type | Description |
string or ArrayBuffer. | The result obtained through base64 decoding. |
import util from 'pts/util';export default function () {// Hello, worldconsole.log(util.base64Decoding('SGVsbG8sIHdvcmxk'));}
import util from 'pts/util';export default function () {// http://www.example.comconsole.log(util.base64Decoding('aHR0cDovL3d3dy5leGFtcGxlLmNvbQ==', 'url'));}
import util from 'pts/util';export default function () {// [object ArrayBuffer]console.log(util.base64Decoding('SGVsbG8sIHdvcmxk', 'std', 'b'));}