@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/esm/index.js CHANGED
@@ -302,7 +302,7 @@ var KeySet = class {
302
302
  }
303
303
  next() {
304
304
  if (this.free.length > 0) {
305
- return this.free.pop();
305
+ return this.free.shift();
306
306
  } else {
307
307
  return this.nextKeyValue++;
308
308
  }
@@ -340,7 +340,7 @@ var KeySet = class {
340
340
  return key;
341
341
  }
342
342
  toDebugString() {
343
- return Array.from(this.keys.entries()).map((k, v) => \`\${k}=>\${v}\`).join(",");
343
+ return Array.from(this.keys.entries()).map(([k, v]) => \`\${k}=>\${v}\`).join(",");
344
344
  }
345
345
  };
346
346