queueobj 7.2.3 → 7.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app.js +1 -1
- package/lib/appenders/base.js +4 -4
- package/package.json +1 -1
- package/test/package.js +1 -1
package/app.js
CHANGED
|
@@ -106,7 +106,7 @@ class QueueObj {
|
|
|
106
106
|
typeof props.appender != `undefined` &&
|
|
107
107
|
typeof props.appender == 'string') {
|
|
108
108
|
props.getParent = t.getParent
|
|
109
|
-
switch (props.appender) {
|
|
109
|
+
switch (props.appender) {
|
|
110
110
|
case 'all':
|
|
111
111
|
t.all = new all(props)
|
|
112
112
|
break
|
package/lib/appenders/base.js
CHANGED
|
@@ -38,10 +38,10 @@ exports = module.exports = class base {
|
|
|
38
38
|
t.process_item = 0
|
|
39
39
|
t.process_array_item = 0
|
|
40
40
|
t.dt_start = new Date(); // start measuring time
|
|
41
|
-
t.props_array = []
|
|
42
|
-
t.resolve_array = []
|
|
43
|
-
t.reject_array = []
|
|
44
|
-
t.status_props_array = []
|
|
41
|
+
// t.props_array = []
|
|
42
|
+
// t.resolve_array = []
|
|
43
|
+
// t.reject_array = []
|
|
44
|
+
// t.status_props_array = []
|
|
45
45
|
|
|
46
46
|
return new Promise((resolve, reject) => {
|
|
47
47
|
t.props_array.push({ the: 'end' })
|
package/package.json
CHANGED