Modifications to the IP library

This commit is contained in:
n1073645 2019-12-04 14:52:55 +00:00
parent 8df9d6fcf6
commit 2ac3ec2a7c
3 changed files with 6 additions and 6 deletions

View file

@ -31,9 +31,9 @@ class ParseX509Certificate extends Operation {
this.outputType = "string";
this.args = [
{
"name": "Input format",
"type": "option",
"value": ["PEM", "DER Hex", "Base64", "Raw"]
name: "Input format",
type: "option",
value: ["PEM", "DER Hex", "Base64", "Raw"]
}
];
this.checks = new magicObject([

View file

@ -28,7 +28,7 @@ class RemoveLineNumbers extends Operation {
{
match: "^\\s*([0-9]+ .*?(\\n))+[0-9] .+$",
flags: "",
magic: true,
magic: false,
args: []
}
]);