irrelon-appcore
Advanced tools
Comparing version 1.0.17 to 1.0.18
14
index.js
@@ -436,6 +436,4 @@ /** | ||
nextItem, | ||
valueArr, | ||
i; | ||
valueArr; | ||
i = -1; | ||
valueArr = []; | ||
@@ -446,5 +444,4 @@ | ||
i++; | ||
definition = arr.shift(); | ||
definition = arr[i]; | ||
if (!definition) { | ||
@@ -459,6 +456,5 @@ return callback(false, valueArr); | ||
// and store the return value in the valueArr | ||
valueArr[i] = definition.apply(self, argsArr); | ||
valueArr.push(definition.apply(self, argsArr)); | ||
// Check for more items in the array | ||
if (i < arr.length) { | ||
if (arr.length) { | ||
// Process the next item | ||
@@ -469,3 +465,3 @@ return nextItem(); | ||
// All processing finished, callback now | ||
return callback(false, valueArr); | ||
callback(false, valueArr); | ||
}); | ||
@@ -472,0 +468,0 @@ }; |
{ | ||
"name": "irrelon-appcore", | ||
"version": "1.0.17", | ||
"version": "1.0.18", | ||
"description": "A very lightweight application dependency manager for maintaining clean modularised code without polluting the global namespace.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
27408
14
0