extra signatures

This commit is contained in:
n1073645 2020-02-25 11:33:35 +00:00
parent 728f8e65d6
commit 2ba37af109
3 changed files with 73 additions and 61 deletions

View File

@ -44,7 +44,9 @@ class EscapeUnicodeCharacters extends Operation {
"value": true "value": true
} }
]; ];
this.patterns = [ this.checks = {
input: {
regex: [
{ {
match: "\\\\u(?:[\\da-f]{4,6})", match: "\\\\u(?:[\\da-f]{4,6})",
flags: "i", flags: "i",
@ -59,8 +61,10 @@ class EscapeUnicodeCharacters extends Operation {
match: "U\\+(?:[\\da-f]{4,6})", match: "U\\+(?:[\\da-f]{4,6})",
flags: "i", flags: "i",
args: ["U+"] args: ["U+"]
}, }
]; ]
}
};
} }
/** /**

View File

@ -33,7 +33,9 @@ class FromBinary extends Operation {
"value": BIN_DELIM_OPTIONS "value": BIN_DELIM_OPTIONS
} }
]; ];
this.patterns = [ this.checks = {
input: {
regex: [
{ {
match: "^(?:[01]{8})+$", match: "^(?:[01]{8})+$",
flags: "", flags: "",
@ -69,7 +71,9 @@ class FromBinary extends Operation {
flags: "", flags: "",
args: ["CRLF"] args: ["CRLF"]
}, },
]; ]
}
};
} }
/** /**

View File

@ -33,14 +33,18 @@ class ParseQRCode extends Operation {
"value": false "value": false
} }
]; ];
this.patterns = [ this.checks = {
input: {
regex: [
{ {
"match": "^(?:\\xff\\xd8\\xff|\\x89\\x50\\x4e\\x47|\\x47\\x49\\x46|.{8}\\x57\\x45\\x42\\x50|\\x42\\x4d)", "match": "^(?:\\xff\\xd8\\xff|\\x89\\x50\\x4e\\x47|\\x47\\x49\\x46|.{8}\\x57\\x45\\x42\\x50|\\x42\\x4d)",
"flags": "", "flags": "",
"args": [false], "args": [false],
"useful": true "useful": true
} }
]; ]
}
};
} }
/** /**