strict mode oopsies
This commit is contained in:
@ -64,7 +64,7 @@ const bankDetailConfigKeys = ["pymt__iban", "pymt__bic"];
|
|||||||
function processSingleAddedNode(n) {
|
function processSingleAddedNode(n) {
|
||||||
if (currentStage.match(n)) {
|
if (currentStage.match(n)) {
|
||||||
console.info(currentStage.name, "matched: ", n);
|
console.info(currentStage.name, "matched: ", n);
|
||||||
success = currentStage.execute(n)
|
const success = currentStage.execute(n)
|
||||||
if (success) {
|
if (success) {
|
||||||
console.info(currentStage.name, "executed successfully");
|
console.info(currentStage.name, "executed successfully");
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user