@superutils/rx 0.1.5 → 0.1.6

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
@@ -392,6 +392,7 @@ interface IDataStorage<Key, Value, CacheDisabled extends boolean = false> {
392
392
  * return JSON.stringify(entries)
393
393
  * }
394
394
  * const storage = new DataStorage('users', { stringify })
395
+ * ```
395
396
  */
396
397
  readonly stringify?: StorageStringifyFn<Key, Value, CacheDisabled>;
397
398
  /** Convert list of items (Map) to 2D Array */
package/dist/index.d.ts CHANGED
@@ -392,6 +392,7 @@ interface IDataStorage<Key, Value, CacheDisabled extends boolean = false> {
392
392
  * return JSON.stringify(entries)
393
393
  * }
394
394
  * const storage = new DataStorage('users', { stringify })
395
+ * ```
395
396
  */
396
397
  readonly stringify?: StorageStringifyFn<Key, Value, CacheDisabled>;
397
398
  /** Convert list of items (Map) to 2D Array */
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.10",
6
- "@superutils/promise": "^1.3.9",
5
+ "@superutils/core": "^1.2.11",
6
+ "@superutils/promise": "^1.3.10",
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.5",
53
- "gitHead": "9b77219f98125fd231d24c6e44299de7b99b679e"
52
+ "version": "0.1.6",
53
+ "gitHead": "c97c6ce7baebd9de3a314616594e69b435d7b719"
54
54
  }