Compare commits

..

4 Commits

Author SHA1 Message Date
92592d9e9a 6.0.11 2023-11-13 16:44:39 +01:00
a786c43970 fix(core): update 2023-11-13 16:44:38 +01:00
66658dc877 6.0.10 2023-11-13 16:43:07 +01:00
be78d74124 fix(core): update 2023-11-13 16:43:06 +01:00
3 changed files with 3 additions and 3 deletions

View File

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

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/lik',
version: '6.0.9',
version: '6.0.11',
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'>();