diff --git a/helpers/decrementVar.js b/helpers/decrementVar.js index f55db639..774d061c 100644 --- a/helpers/decrementVar.js +++ b/helpers/decrementVar.js @@ -24,9 +24,6 @@ const factory = globals => { // Initialize or re-initialize value globals.storage.variables[key] = 0; } - - // Return current value - return globals.storage.variables[key]; }; }; diff --git a/helpers/incrementVar.js b/helpers/incrementVar.js index a9eef2bc..c8f07a5f 100644 --- a/helpers/incrementVar.js +++ b/helpers/incrementVar.js @@ -24,9 +24,6 @@ const factory = globals => { // Initialize or re-initialize value globals.storage.variables[key] = 0; } - - // Return current value - return globals.storage.variables[key]; }; };