Base64Encode
Will encode an input using Base64 format.
- Type
- javascript
- Pack
- CommonScripts
Source
var result = Base64.encode(args.input);
return {Type: entryTypes.note,
Contents: result,
ContentsFormat: formats.note,
HumanReadable: result,
EntryContext: {"Base64.encoded": result}
};
README
Encodes an input using Base64 format.
Script Data
| Name |
Description |
| Script Type |
javascript |
| Tags |
Utility |
Inputs
| Argument Name |
Description |
| input |
The input to encode in Base64 format. |
Outputs
| Path |
Description |
Type |
| Base64.encoded |
The input encoded as Base64 format. |
Unknown |