Added in a check to allow Manchester encoded things to be detected by magic

This commit is contained in:
mt3571 2020-12-01 14:09:59 +00:00
parent 101bab2d15
commit 3340fa079e

View file

@ -25,6 +25,13 @@ class ManchesterDecode extends Operation {
this.inputType = "string";
this.outputType = "string";
this.args = [];
this.checks = [
{
pattern: "(01|10)*",
flags: "",
args: []
}
];
}
/**