Compare commits

..

2 Commits

Author SHA1 Message Date
f4e548aa2c 3.0.6 2023-07-24 13:59:47 +02:00
3f85e9fa3c fix(core): update 2023-07-24 13:59:46 +02:00
3 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@push.rocks/smartrx", "name": "@push.rocks/smartrx",
"version": "3.0.5", "version": "3.0.6",
"private": false, "private": false,
"description": "smart wrapper for rxjs", "description": "smart wrapper for rxjs",
"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/smartrx', name: '@push.rocks/smartrx',
version: '3.0.5', version: '3.0.6',
description: 'smart wrapper for rxjs' description: 'smart wrapper for rxjs'
} }

View File

@ -4,7 +4,7 @@ export { Observable, Subject, fromEvent, ReplaySubject, Subscription, from } fro
export type { Observer } from 'rxjs'; export type { Observer } from 'rxjs';
import { startWith, takeUntil, map, debounce, debounceTime, throttleTime } from 'rxjs/operators'; import { startWith, takeUntil, map, debounce, debounceTime, throttleTime, filter } from 'rxjs/operators';
export const ops = { export const ops = {
debounce, debounce,
@ -13,4 +13,5 @@ export const ops = {
startWith, startWith,
takeUntil, takeUntil,
throttleTime, throttleTime,
filter,
}; };