file-obj-queue 1.0.22 → 1.0.23
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 +6 -1
- package/package.json +1 -1
- package/test/package.js +1 -1
package/app.js
CHANGED
|
@@ -100,7 +100,8 @@ exports = module.exports = class FilesQueue {
|
|
|
100
100
|
class_obj: file_obj,
|
|
101
101
|
appender: 'all',
|
|
102
102
|
stats: true,
|
|
103
|
-
debug: true
|
|
103
|
+
debug: true,
|
|
104
|
+
file_obj_queue: t.getFileObj //jrm debug 1/31
|
|
104
105
|
})
|
|
105
106
|
t.logMsg(`jrm debug 1/29 8801`)
|
|
106
107
|
} catch (e) {
|
|
@@ -126,6 +127,10 @@ exports = module.exports = class FilesQueue {
|
|
|
126
127
|
}
|
|
127
128
|
}
|
|
128
129
|
|
|
130
|
+
getFileObj(){
|
|
131
|
+
return this
|
|
132
|
+
}
|
|
133
|
+
|
|
129
134
|
getFileObject() {
|
|
130
135
|
return this.qJson.get_class_obj_array()
|
|
131
136
|
}
|
package/package.json
CHANGED