strict mode oopsies
This commit is contained in:
parent
8b482b1245
commit
04e92f771a
@ -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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user