@webqit/observer 2.1.6 → 2.1.7
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/README.md +1 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -110,7 +110,7 @@ Observer.observe( obj, handleChanges, { signal: abortController.signal } );
|
|
|
110
110
|
abortController.abort();
|
|
111
111
|
```
|
|
112
112
|
|
|
113
|
-
**-->** Where listeners initiate child observers, leverage "AbortSignal-cascading" to tie child observers to parent observer's lifecycle:
|
|
113
|
+
**-->** Where listeners initiate nested observers (child observers), leverage "AbortSignal-cascading" to tie child observers to parent observer's lifecycle:
|
|
114
114
|
|
|
115
115
|
```js
|
|
116
116
|
// Parent -
|
|
@@ -269,7 +269,6 @@ obj = Observer.unproxy( $obj );
|
|
|
269
269
|
Observe "the value" at a path in a given tree:
|
|
270
270
|
|
|
271
271
|
```js
|
|
272
|
-
// A tree structure that satisfies the path above
|
|
273
272
|
const obj = {
|
|
274
273
|
level1: {
|
|
275
274
|
level2: 'level2-value',
|