ig-types 6.24.20 → 6.24.21
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/package.json +1 -1
- package/runner.js +3 -3
package/package.json
CHANGED
package/runner.js
CHANGED
|
@@ -575,11 +575,11 @@ object.Constructor('FinalizableQueue', Queue, {
|
|
|
575
575
|
auto_stop: true,
|
|
576
576
|
|
|
577
577
|
// not for direct use...
|
|
578
|
+
// NOTE: we are intentionally not freezing .__results to allow them
|
|
579
|
+
// to be consumed by the client...
|
|
580
|
+
// XXX is this correct???
|
|
578
581
|
__freeze: function(){
|
|
579
582
|
Object.freeze(this)
|
|
580
|
-
// XXX do we remove/freeze .__running???
|
|
581
|
-
this.__results
|
|
582
|
-
&& Object.freeze(this.__results)
|
|
583
583
|
return this },
|
|
584
584
|
|
|
585
585
|
__onempty__: function(){
|