Skip to content

Commit

Permalink
Merge branch 'picapi-b64-description-fix'
Browse files Browse the repository at this point in the history
  • Loading branch information
n1474335 committed Jan 18, 2019
2 parents 9787ab0 + 4d8127a commit 55775f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/operations/ToBase64.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ToBase64 extends Operation {

this.name = "To Base64";
this.module = "Default";
this.description = "Base64 is a notation for encoding arbitrary byte data using a restricted set of symbols that can be conveniently used by humans and processed by computers.<br><br>This operation decodes data from an ASCII Base64 string back into its raw format.<br><br>e.g. <code>aGVsbG8=</code> becomes <code>hello</code>";
this.description = "Base64 is a notation for encoding arbitrary byte data using a restricted set of symbols that can be conveniently used by humans and processed by computers.<br><br>This operation encodes raw data into an ASCII Base64 string.<br><br>e.g. <code>hello</code> becomes <code>aGVsbG8=</code>";
this.infoURL = "https://wikipedia.org/wiki/Base64";
this.inputType = "ArrayBuffer";
this.outputType = "string";
Expand Down

0 comments on commit 55775f4

Please sign in to comment.