mol_view_tree2_lib 1.0.209 → 1.0.210

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/web.mjs CHANGED
@@ -2738,6 +2738,12 @@ var $;
2738
2738
  // [ Symbol.toPrimitive ]() {
2739
2739
  // return this.toString()
2740
2740
  // }
2741
+ match(...args) {
2742
+ return this.toString().match(...args);
2743
+ }
2744
+ split(...args) {
2745
+ return this.toString().split(...args);
2746
+ }
2741
2747
  toString() {
2742
2748
  return this.join('\n');
2743
2749
  }