mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 07:16:17 -04:00
Add ability to exclude operations from Node API. Exclude flow control ops
This commit is contained in:
parent
866b36729c
commit
f95f01b895
2 changed files with 22 additions and 4 deletions
15
src/node/config/excludedOperations.mjs
Normal file
15
src/node/config/excludedOperations.mjs
Normal file
|
@ -0,0 +1,15 @@
|
|||
/**
|
||||
* 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",
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue