@superutils/rx 0.1.8 → 0.1.9

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/dist/index.d.cts CHANGED
@@ -653,7 +653,7 @@ declare const forceUpdateCache$: Subject<string | boolean | string[]>;
653
653
  * console.log('Saving to database...', data)
654
654
  * })
655
655
  * // unsubscribe from subject
656
- * setTimeout(()=> sub.unsbuscribe(), 1000)
656
+ * setTimeout(()=> sub.unsubscribe(), 1000)
657
657
  *
658
658
  * // add an entry to storage
659
659
  * storage.set('bob', { age: 99, id: 'bob', name: 'Bob' })
package/dist/index.d.ts CHANGED
@@ -653,7 +653,7 @@ declare const forceUpdateCache$: Subject<string | boolean | string[]>;
653
653
  * console.log('Saving to database...', data)
654
654
  * })
655
655
  * // unsubscribe from subject
656
- * setTimeout(()=> sub.unsbuscribe(), 1000)
656
+ * setTimeout(()=> sub.unsubscribe(), 1000)
657
657
  *
658
658
  * // add an entry to storage
659
659
  * storage.set('bob', { age: 99, id: 'bob', name: 'Bob' })
package/package.json CHANGED
@@ -2,8 +2,8 @@
2
2
  "author": "Toufiqur Rahaman Chowdhury",
3
3
  "description": "A set of small, focused utilities for working with RxJS observables and subjects.",
4
4
  "dependencies": {
5
- "@superutils/core": "^1.2.12",
6
- "@superutils/promise": "^1.3.11",
5
+ "@superutils/core": "^1.2.13",
6
+ "@superutils/promise": "^1.3.12",
7
7
  "@types/react": "^18.0.0",
8
8
  "react": ">=16.8.0",
9
9
  "rxjs": "^7.8.2"
@@ -49,6 +49,6 @@
49
49
  "module": "./dist/index.js",
50
50
  "type": "module",
51
51
  "types": "./dist/index.d.ts",
52
- "version": "0.1.8",
53
- "gitHead": "3e80a443cf9392f0df4147494ea35ace1391bb1f"
52
+ "version": "0.1.9",
53
+ "gitHead": "1661eeeed9d00cb6b960e76563cdd3cee2cac8a7"
54
54
  }