fix(core): update

This commit is contained in:
Philipp Kunz 2023-11-13 16:43:06 +01:00
parent bde0404777
commit be78d74124
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -1,7 +1,7 @@
import * as plugins from './lik.plugins.js';
export class BackpressuredArray<T> {
private data: T[];
public data: T[];
private highWaterMark: number;
public hasSpace = new plugins.smartrx.rxjs.Subject<'hasSpace'>();