eyereasoner 1.3.0 → 1.3.1

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.
@@ -2704,7 +2704,7 @@ var SWIPL = (() => {
2704
2704
  bind(e, on, goal) { const prolog = this; e.addEventListener(on, ev => { prolog.query(goal, { Event__: ev }).once(); }); }
2705
2705
  fetch(url, opts, type) { return fetch(url, opts).then(response => response[type]()); }
2706
2706
  url_properties(url) { return fetch(url, { method: "HEAD" }).then(r => { if (r.status == 200) {
2707
- const size = parseInt(r.headers.get("content-length"));
2707
+ let size = parseInt(r.headers.get("content-length"));
2708
2708
  const mods = r.headers.get("last-modified");
2709
2709
  const time = Date.parse(mods) || 0;
2710
2710
  if (!size instanceof Number)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eyereasoner",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Distributing the [EYE](https://github.com/josd/eye) reasoner for browser and node using WebAssembly.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.js",
@@ -95,8 +95,8 @@
95
95
  },
96
96
  "config": {
97
97
  "eye": {
98
- "name": "v22.1225.2216",
99
- "sha": "6405dcb4b1dacb806af9e18f909cc06db31b3059"
98
+ "name": "v22.1226.2224",
99
+ "sha": "0f97ab32a2a9ca6805053ec1cdae2582cf57d518"
100
100
  }
101
101
  },
102
102
  "dependencies": {