@agoric/internal 0.3.3-dev-f6d536e.0.f6d536e → 0.3.3-dev-7fc8f4b.0.7fc8f4b

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-f6d536e.0.f6d536e",
3
+ "version": "0.3.3-dev-7fc8f4b.0.7fc8f4b",
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": "yarn run -T tsc"
21
21
  },
22
22
  "dependencies": {
23
- "@agoric/base-zone": "0.1.1-dev-f6d536e.0.f6d536e",
23
+ "@agoric/base-zone": "0.1.1-dev-7fc8f4b.0.7fc8f4b",
24
24
  "@endo/cache-map": "^1.1.0",
25
25
  "@endo/common": "^1.2.13",
26
26
  "@endo/compartment-mapper": "^1.6.3",
@@ -38,7 +38,7 @@
38
38
  "jessie.js": "^0.3.4"
39
39
  },
40
40
  "devDependencies": {
41
- "@agoric/cosmic-proto": "0.4.1-dev-f6d536e.0.f6d536e",
41
+ "@agoric/cosmic-proto": "0.4.1-dev-7fc8f4b.0.7fc8f4b",
42
42
  "@endo/exo": "^1.5.12",
43
43
  "@endo/init": "^1.1.12",
44
44
  "@endo/ses-ava": "^1.3.2",
@@ -66,5 +66,5 @@
66
66
  "typeCoverage": {
67
67
  "atLeast": 92.84
68
68
  },
69
- "gitHead": "f6d536e4bdfe4e197f68a00dbc591d2caa02535c"
69
+ "gitHead": "7fc8f4b546e2d182dac8c66a62905f2328026afb"
70
70
  }
@@ -1 +1 @@
1
- {"version":3,"file":"spawnSubprocessWorker.d.ts","sourceRoot":"","sources":["spawnSubprocessWorker.js"],"names":[],"mappings":"AAgCA;;;;;;;;;;;EA0DC"}
1
+ {"version":3,"file":"spawnSubprocessWorker.d.ts","sourceRoot":"","sources":["spawnSubprocessWorker.js"],"names":[],"mappings":"AA+BA;;;;;;;;;;;EA0DC"}
@@ -18,7 +18,6 @@ import {
18
18
  // toChild, fromChild } pair of Streams which accept/emit hardened Arrays of
19
19
  // JSON-serializable data.
20
20
 
21
- // eslint-disable-next-line no-unused-vars
22
21
  function parentLog(_first, ..._args) {
23
22
  // console.error(`--parent: ${_first}`, ..._args);
24
23
  }
@@ -21,7 +21,7 @@ const compareNats = (a, b) => {
21
21
 
22
22
  // TODO: compareByCodePoints
23
23
  // https://github.com/endojs/endo/pull/2008
24
- // eslint-disable-next-line no-nested-ternary
24
+
25
25
  const compareStrings = (a, b) => (a > b ? 1 : a < b ? -1 : 0);
26
26
 
27
27
  const rCaptureDigits = /([0-9]+)/;