mol_wire_lib 1.0.772 → 1.0.773
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
|
@@ -1851,7 +1851,7 @@ var $;
|
|
|
1851
1851
|
return new $mol_span(uri, source, 1, 1, 0);
|
|
1852
1852
|
}
|
|
1853
1853
|
static end(uri, source) {
|
|
1854
|
-
return new $mol_span(uri, source, 1, source.length + 1,
|
|
1854
|
+
return new $mol_span(uri, source, 1, source.length + 1, 0);
|
|
1855
1855
|
}
|
|
1856
1856
|
static entire(uri, source) {
|
|
1857
1857
|
return new $mol_span(uri, source, 1, 1, source.length);
|
package/node.test.js
CHANGED
|
@@ -1843,7 +1843,7 @@ var $;
|
|
|
1843
1843
|
return new $mol_span(uri, source, 1, 1, 0);
|
|
1844
1844
|
}
|
|
1845
1845
|
static end(uri, source) {
|
|
1846
|
-
return new $mol_span(uri, source, 1, source.length + 1,
|
|
1846
|
+
return new $mol_span(uri, source, 1, source.length + 1, 0);
|
|
1847
1847
|
}
|
|
1848
1848
|
static entire(uri, source) {
|
|
1849
1849
|
return new $mol_span(uri, source, 1, 1, source.length);
|