scoundrel-remote-eval 1.0.23 → 1.0.24

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 +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -147,7 +147,7 @@ const length = await array.length
147
147
 
148
148
  ## Chaining proxy calls
149
149
 
150
- You can chain method calls on the same proxy and only `await` once (the last call's result is returned):
150
+ You can chain method calls on the same proxy and only `await` once (the last call's raw result is returned). The chain returns the final method result directly, so helpers like `__serialize()` are not available on the chain itself. Chaining is only ergonomic when intermediate calls return the original object (or another object that still supports the next method), because the chain replays calls on the same reference.
151
151
 
152
152
  ```js
153
153
  const result = await array
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "scoundrel-remote-eval",
3
3
  "type": "module",
4
- "version": "1.0.23",
4
+ "version": "1.0.24",
5
5
  "description": "",
6
6
  "main": "build/index.js",
7
7
  "types": "build/index.d.ts",