2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-10 21:33:36 +00:00

Merge branch 'v9' of github.com:gchq/CyberChef into node-lib

This commit is contained in:
d98762625
2019-07-05 13:10:44 +01:00
28 changed files with 386 additions and 303 deletions

View File

@@ -42,7 +42,7 @@ class Chef {
const startTime = new Date().getTime(),
recipe = new Recipe(recipeConfig),
containsFc = recipe.containsFlowControl(),
notUTF8 = options && options.hasOwnProperty("treatAsUtf8") && !options.treatAsUtf8;
notUTF8 = options && "treatAsUtf8" in options && !options.treatAsUtf8;
let error = false,
progress = 0;