mirror of
https://github.com/gchq/CyberChef
synced 2025-12-17 16:53:45 +00:00
Replaced jsHint with eslint. Fixes #4.
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
*
|
||||
* @namespace
|
||||
*/
|
||||
var FlowControl = {
|
||||
const FlowControl = {
|
||||
|
||||
/**
|
||||
* @constant
|
||||
@@ -46,7 +46,7 @@ var FlowControl = {
|
||||
// Create sub_op_list for each tranche to operate on
|
||||
// (all remaining operations unless we encounter a Merge)
|
||||
for (var i = state.progress + 1; i < op_list.length; i++) {
|
||||
if (op_list[i].name == "Merge" && !op_list[i].is_disabled()) {
|
||||
if (op_list[i].name === "Merge" && !op_list[i].is_disabled()) {
|
||||
break;
|
||||
} else {
|
||||
sub_op_list.push(op_list[i]);
|
||||
|
||||
Reference in New Issue
Block a user