@agoric/internal 0.3.3-dev-bd1190d.0 → 0.3.3-dev-35576e9.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/internal",
3
- "version": "0.3.3-dev-bd1190d.0+bd1190d",
3
+ "version": "0.3.3-dev-35576e9.0+35576e9",
4
4
  "description": "Externally unsupported utilities internal to agoric-sdk",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -20,7 +20,7 @@
20
20
  "lint:types": "tsc -p jsconfig.json"
21
21
  },
22
22
  "dependencies": {
23
- "@agoric/zone": "0.2.3-dev-bd1190d.0+bd1190d",
23
+ "@agoric/zone": "0.2.3-dev-35576e9.0+35576e9",
24
24
  "@endo/far": "^0.2.18",
25
25
  "@endo/marshal": "^0.8.5",
26
26
  "@endo/patterns": "^0.2.2",
@@ -42,5 +42,5 @@
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "bd1190d9ed860c9f28fbef1711aa0615c63ac00f"
45
+ "gitHead": "35576e9f84572359d4dc613a5cc20f19c6dc76ec"
46
46
  }
package/src/callback.js CHANGED
@@ -265,7 +265,7 @@ export const prepareAttenuator = (
265
265
  /**
266
266
  * @param {object} opts
267
267
  * @param {any} [opts.target]
268
- * @param {boolean} [opts.isSync=false]
268
+ * @param {boolean} [opts.isSync]
269
269
  * @param {Overrides} [opts.overrides]
270
270
  */
271
271
  ({
package/src/marshal.js CHANGED
@@ -65,7 +65,7 @@ harden(assertCapData);
65
65
  * @param {Map<string, string>} data
66
66
  * @param {string} key
67
67
  * @param {ReturnType<typeof import('@endo/marshal').makeMarshal>['fromCapData']} fromCapData
68
- * @param {number} [index=-1] index of the desired value in a deserialized stream cell
68
+ * @param {number} [index] index of the desired value in a deserialized stream cell
69
69
  */
70
70
  export const unmarshalFromVstorage = (data, key, fromCapData, index = -1) => {
71
71
  const serialized = data.get(key) || Fail`no data for ${key}`;