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

View File

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

View File

@ -33,14 +33,18 @@ class ParseQRCode extends Operation {
"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)",
"flags": "",
"args": [false],
"useful": true
}
];
]
}
};
}
/**