Tweaked MessagePack operations

This commit is contained in:
n1474335 2018-08-21 19:29:19 +01:00
parent e7c6a05e9f
commit d3d230a76d
4 changed files with 10 additions and 3 deletions

View file

@ -21,7 +21,8 @@ class FromMessagePack extends Operation {
this.name = "From MessagePack";
this.module = "Code";
this.description = "Converts MessagePack encoded data to JSON";
this.description = "Converts MessagePack encoded data to JSON. MessagePack is a computer data interchange format. It is a binary form for representing simple data structures like arrays and associative arrays.";
this.infoURL = "https://wikipedia.org/wiki/MessagePack";
this.inputType = "ArrayBuffer";
this.outputType = "JSON";
this.args = [];

View file

@ -21,7 +21,8 @@ class ToMessagePack extends Operation {
this.name = "To MessagePack";
this.module = "Code";
this.description = "Converts JSON to MessagePack encoded byte buffer";
this.description = "Converts JSON to MessagePack encoded byte buffer. MessagePack is a computer data interchange format. It is a binary form for representing simple data structures like arrays and associative arrays.";
this.infoURL = "https://wikipedia.org/wiki/MessagePack";
this.inputType = "JSON";
this.outputType = "ArrayBuffer";
this.args = [];