Compare commits

...

2 Commits

Author SHA1 Message Date
052322fb98 6.0.13 2024-02-23 17:44:52 +01:00
9e1eb0b3a0 fix(core): update 2024-02-23 17:44:51 +01:00
3 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@push.rocks/lik", "name": "@push.rocks/lik",
"version": "6.0.12", "version": "6.0.13",
"private": false, "private": false,
"description": "light little helpers for node", "description": "light little helpers for node",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/lik', name: '@push.rocks/lik',
version: '6.0.12', version: '6.0.13',
description: 'light little helpers for node' description: 'light little helpers for node'
} }

View File

@ -47,7 +47,6 @@ export class BackpressuredArray<T> {
}); });
} }
// New method to wait for items
waitForItems(): Promise<void> { waitForItems(): Promise<void> {
return new Promise<void>((resolve) => { return new Promise<void>((resolve) => {
if (this.data.length > 0) { if (this.data.length > 0) {