@vuu-ui/vuu-data-remote 0.8.20-debug → 0.8.21-debug

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/cjs/index.js CHANGED
@@ -338,7 +338,7 @@ var KeySet = class {
338
338
  }
339
339
  next() {
340
340
  if (this.free.length > 0) {
341
- return this.free.pop();
341
+ return this.free.shift();
342
342
  } else {
343
343
  return this.nextKeyValue++;
344
344
  }
@@ -376,7 +376,7 @@ var KeySet = class {
376
376
  return key;
377
377
  }
378
378
  toDebugString() {
379
- return Array.from(this.keys.entries()).map((k, v) => \`\${k}=>\${v}\`).join(",");
379
+ return Array.from(this.keys.entries()).map(([k, v]) => \`\${k}=>\${v}\`).join(",");
380
380
  }
381
381
  };
382
382