2
0
mirror of https://github.com/gchq/CyberChef synced 2026-01-07 11:03:18 +00:00

ESM: Fixed OperationError detection and tidied up ops.

This commit is contained in:
n1474335
2018-05-16 10:17:49 +01:00
parent acb8a342a7
commit b760c2f1a0
17 changed files with 2134 additions and 2122 deletions

View File

@@ -15,6 +15,8 @@ class OperationError extends Error {
constructor(...args) {
super(...args);
this.type = "OperationError";
if (Error.captureStackTrace) {
Error.captureStackTrace(this, OperationError);
}