mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-16 08:58:30 +01:00
47 lines
1,005 B
JavaScript
47 lines
1,005 B
JavaScript
/**
|
|
* @author n1474335 [n1474335@gmail.com]
|
|
* @copyright Crown Copyright 2016
|
|
* @license Apache-2.0
|
|
*/
|
|
|
|
import vkbeautify from "vkbeautify";
|
|
import Operation from "../Operation.mjs";
|
|
|
|
/**
|
|
* XML Beautify operation
|
|
*/
|
|
class XMLBeautify extends Operation {
|
|
|
|
/**
|
|
* XMLBeautify constructor
|
|
*/
|
|
constructor() {
|
|
super();
|
|
|
|
this.name = "XML Beautify";
|
|
this.module = "Code";
|
|
this.description = "Indents and prettifies eXtensible Markup Language (XML) code.";
|
|
this.inputType = "string";
|
|
this.outputType = "string";
|
|
this.args = [
|
|
{
|
|
"name": "Indent string",
|
|
"type": "binaryShortString",
|
|
"value": "\\t"
|
|
}
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param {string} input
|
|
* @param {Object[]} args
|
|
* @returns {string}
|
|
*/
|
|
run(input, args) {
|
|
const indentStr = args[0];
|
|
return vkbeautify.xml(input, indentStr);
|
|
}
|
|
|
|
}
|
|
|
|
export default XMLBeautify;
|