2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-27 21:53:53 +00:00
Files
CyberChef/src/node/config/excludedOperations.mjs
2019-10-16 15:38:20 +01:00

25 lines
502 B
JavaScript

/**
* Operations to exclude from the Node API
*
* @author d98762656 [d98762625@gmail.com]
* @copyright Crown Copyright 2018
* @license Apache-2.0
*/
export default [
// This functionality can be done more easily using JavaScript
"Fork",
"Merge",
"Jump",
"ConditionalJump",
"Label",
"Comment",
// esprima doesn't work in .mjs
"JavaScriptBeautify",
"JavaScriptMinify",
"JavaScriptParser",
// Irrelevant in Node console
"SyntaxHighlighter",
];