Summary
- Own
Methods Attributes |
Methods Name |
Methods Description |
<static>
|
Ape.b64.
decode
(text)
|
Encode a string in base64.
|
<static>
|
Ape.b64.
encode
(text)
|
Decode a base64 encoded string.
|
<static>
{string}
Ape.b64.
decode
(text)
Encode a string in base64.
- Parameters:
-
{string}
text
A string.
- Returns:
-
{string}
The decoded string.
- Example
-
var foo = Ape.base64.dede(xxx);
- See:
<static>
{string}
Ape.b64.
encode
(text)
Decode a base64 encoded string.
- Parameters:
-
{string}
text
An encoded string.
- Returns:
-
{string}
The decoded string.
- Example
-
var foo = Ape.base64.decode(xxx);
- See: