@webqit/observer 3.8.8 → 3.8.10

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.
Files changed (2) hide show
  1. package/README.md +2 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
 
12
12
  ---
13
13
 
14
- Observe and intercept operations on arbitrary JavaScript objects and arrays using a utility-first, general-purpose reactivity API! This API re-explores the unique design of the [Object.observe()](https://web.dev/es7-observe/) API and unifies that with the rest of JavaScript's metaprogramming APIs like Proxy "traps" and the `Reflect` API!
14
+ Observe and intercept operations on arbitrary JavaScript objects and arrays using a utility-first, general-purpose reactivity API! This API re-explores the unique design of the [Object.observe()](https://web.dev/es7-observe/) API and unifies that with the rest of JavaScript's metaprogramming APIs: `Proxies`, `Reflect`, `Object`!
15
15
 
16
16
  The Observer API comes as one little API for all things _object observability_. (Only `~5.8KiB min|zip`)
17
17
 
@@ -30,7 +30,7 @@ Observer.deleteProperty(state, 'oldProp');
30
30
  ```
31
31
 
32
32
  > [!TIP]
33
- > Reactivity is anchored on the programmtic APIs `.set()`, `.deleteProperty()`, etc. — 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.
33
+ > Reactivity is anchored on its programmtic APIs like `.set()`, `.deleteProperty()`, but you also get reactivity 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
 
@@ -138,7 +138,6 @@ const controller = Observer.observe(user, (mutations) => {
138
138
  });
139
139
  });
140
140
 
141
- // Make changes using programmatic APIs
142
141
  Observer.set(user, 'name', 'Jane');
143
142
  Observer.set(user, 'age', 26);
144
143
 
package/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "events"
13
13
  ],
14
14
  "homepage": "https://webqit.io/tooling/observer",
15
- "version": "3.8.8",
15
+ "version": "3.8.10",
16
16
  "license": "MIT",
17
17
  "repository": {
18
18
  "type": "git",