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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/runner.js +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ig-types",
3
- "version": "6.24.20",
3
+ "version": "6.24.21",
4
4
  "description": "Generic JavaScript types and type extensions...",
5
5
  "main": "main.js",
6
6
  "scripts": {
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(){