You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/core/config/OperationConfig.js
+62Lines changed: 62 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,14 @@ import URL_ from "../operations/URL.js";
81
81
* @type {Object.<string, OpConf>}
82
82
*/
83
83
constOperationConfig={
84
+
"Magic": {
85
+
module: "Default",
86
+
description: "Attempts to detect what the input data is and which operations could help to make more sense of it.",
87
+
inputType: "ArrayBuffer",
88
+
outputType: "string",
89
+
flowControl: true,
90
+
args: []
91
+
},
84
92
"Fork": {
85
93
module: "Default",
86
94
description: "Split the input data up based on the specified delimiter and run all subsequent operations on each branch separately.<br><br>For example, to decode multiple Base64 strings, enter them all on separate lines then add the 'Fork' and 'From Base64' operations to the recipe. Each string will be decoded separately.",
0 commit comments