@adaptic/utils 0.0.359 → 0.0.361

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Adaptic Utilities
1
+ # @adaptic/utils
2
2
 
3
3
  Last updated: 20 Feb 2025
4
4
 
package/dist/index.cjs CHANGED
@@ -4230,6 +4230,12 @@ class Queue {
4230
4230
  current = current.next;
4231
4231
  }
4232
4232
  }
4233
+
4234
+ * drain() {
4235
+ while (this.#head) {
4236
+ yield this.dequeue();
4237
+ }
4238
+ }
4233
4239
  }
4234
4240
 
4235
4241
  function pLimit(concurrency) {