mol_plot_all 1.2.1716 → 1.2.1718

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
@@ -788,6 +788,12 @@ var $;
788
788
  // [ Symbol.toPrimitive ]() {
789
789
  // return this.toString()
790
790
  // }
791
+ match(...args) {
792
+ return this.toString().match(...args);
793
+ }
794
+ split(...args) {
795
+ return this.toString().split(...args);
796
+ }
791
797
  toString() {
792
798
  return this.join('\n');
793
799
  }
package/node.test.js CHANGED
@@ -779,6 +779,12 @@ var $;
779
779
  // [ Symbol.toPrimitive ]() {
780
780
  // return this.toString()
781
781
  // }
782
+ match(...args) {
783
+ return this.toString().match(...args);
784
+ }
785
+ split(...args) {
786
+ return this.toString().split(...args);
787
+ }
782
788
  toString() {
783
789
  return this.join('\n');
784
790
  }