mol_plot_all 1.2.781 → 1.2.783
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/node.js +1 -1
- package/node.js.map +1 -1
- package/node.mjs +1 -1
- package/node.test.js +1 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
package/node.mjs
CHANGED
|
@@ -1469,7 +1469,7 @@ var $;
|
|
|
1469
1469
|
return new $mol_span(uri, source, 1, 1, 0);
|
|
1470
1470
|
}
|
|
1471
1471
|
static end(uri, source) {
|
|
1472
|
-
return new $mol_span(uri, source, 1, source.length + 1,
|
|
1472
|
+
return new $mol_span(uri, source, 1, source.length + 1, 0);
|
|
1473
1473
|
}
|
|
1474
1474
|
static entire(uri, source) {
|
|
1475
1475
|
return new $mol_span(uri, source, 1, 1, source.length);
|
package/node.test.js
CHANGED
|
@@ -1461,7 +1461,7 @@ var $;
|
|
|
1461
1461
|
return new $mol_span(uri, source, 1, 1, 0);
|
|
1462
1462
|
}
|
|
1463
1463
|
static end(uri, source) {
|
|
1464
|
-
return new $mol_span(uri, source, 1, source.length + 1,
|
|
1464
|
+
return new $mol_span(uri, source, 1, source.length + 1, 0);
|
|
1465
1465
|
}
|
|
1466
1466
|
static entire(uri, source) {
|
|
1467
1467
|
return new $mol_span(uri, source, 1, 1, source.length);
|