mol_jsx_lib 0.0.1613 → 0.0.1614

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
@@ -786,6 +786,12 @@ var $;
786
786
  // [ Symbol.toPrimitive ]() {
787
787
  // return this.toString()
788
788
  // }
789
+ match(...args) {
790
+ return this.toString().match(...args);
791
+ }
792
+ split(...args) {
793
+ return this.toString().split(...args);
794
+ }
789
795
  toString() {
790
796
  return this.join('\n');
791
797
  }