2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-31 23:53:49 +00:00
Files
CyberChef/src/node/config/excludedOperations.mjs
2018-08-14 12:03:10 +01:00

29 lines
492 B
JavaScript

/**
* Operations to exlude from the Node API
*
* @author d98762656 [d98762625@gmail.com]
* @copyright Crown Copyright 2018
* @license Apache-2.0
*/
export default [
"Fork",
"Merge",
"Jump",
"ConditionalJump",
"Label",
"Comment",
// Exclude file ops until HTML5 File Object can be mimicked
"Tar",
"Untar",
"Unzip",
"Zip",
// Also uses files
"DetectFileType",
"ExtractEXIF",
// Relies on state of recipe.
// "Magic",
];