mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-10 16:25:01 -04:00
Delete CSSBeautify.mjs
This commit is contained in:
parent
6d138f345f
commit
79ed9823a9
1 changed files with 0 additions and 47 deletions
|
@ -1,47 +0,0 @@
|
||||||
/**
|
|
||||||
* @author n1474335 [n1474335@gmail.com]
|
|
||||||
* @copyright Crown Copyright 2016
|
|
||||||
* @license Apache-2.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
import vkbeautify from "vkbeautify";
|
|
||||||
import Operation from "../Operation.mjs";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* CSS Beautify operation
|
|
||||||
*/
|
|
||||||
class CSSBeautify extends Operation {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* CSSBeautify constructor
|
|
||||||
*/
|
|
||||||
constructor() {
|
|
||||||
super();
|
|
||||||
|
|
||||||
this.name = "CSS Beautify";
|
|
||||||
this.module = "Code";
|
|
||||||
this.description = "Indents and prettifies Cascading Style Sheets (CSS) 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.css(input, indentStr);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
export default CSSBeautify;
|
|
Loading…
Add table
Add a link
Reference in a new issue