@webqit/observer 3.8.8 → 3.8.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/README.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ Observer.deleteProperty(state, 'oldProp');
|
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
> [!TIP]
|
|
33
|
-
> Reactivity is anchored on
|
|
33
|
+
> Reactivity is anchored on its programmtic APIs like `.set()`, `.deleteProperty()`, but reactivity is also possible over literal JavaScript operations like `obj.prop = value`, `delete obj.prop` — by means of the `accessorize()` and `proxy()` methods covered just ahead.
|
|
34
34
|
>
|
|
35
35
|
> For full-fledged Imperative Reactive Programming, you may want to see the [Quantum JS](https://github.com/webqit/quantum-js) project.
|
|
36
36
|
|