Skip to content
This repository has been archived by the owner on Oct 6, 2022. It is now read-only.

Latest commit

 

History

History
21 lines (16 loc) · 615 Bytes

String.base64Decode.md

File metadata and controls

21 lines (16 loc) · 615 Bytes

String.base64Decode

The base64Decode function is established to decode a encoded String by base64. This function is powered by base64.

Sample

	var value;
	value=("A=B B=C C=D".base64Encode());//value="QT1CIEI9QyBDPUQ=";
	value=value.base64Decode();//value="A=B B=C C=D"
value=("A=B B=C C=D".base64EncodeURI());//value="QT1CIEI9QyBDPUQ";
value=value.base64Decode();//value="A=B B=C C=D"

API

CallingReturning
{String} . base64Decode ( ){String}