mol_jsx_lib 0.0.639 → 0.0.641

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.mjs CHANGED
@@ -296,7 +296,7 @@ var $;
296
296
  return new $mol_span(uri, source, 1, 1, 0);
297
297
  }
298
298
  static end(uri, source) {
299
- return new $mol_span(uri, source, 1, source.length + 1, length);
299
+ return new $mol_span(uri, source, 1, source.length + 1, 0);
300
300
  }
301
301
  static entire(uri, source) {
302
302
  return new $mol_span(uri, source, 1, 1, source.length);
package/node.test.js CHANGED
@@ -288,7 +288,7 @@ var $;
288
288
  return new $mol_span(uri, source, 1, 1, 0);
289
289
  }
290
290
  static end(uri, source) {
291
- return new $mol_span(uri, source, 1, source.length + 1, length);
291
+ return new $mol_span(uri, source, 1, source.length + 1, 0);
292
292
  }
293
293
  static entire(uri, source) {
294
294
  return new $mol_span(uri, source, 1, 1, source.length);