mol_conform 0.0.272 → 0.0.274

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.test.js CHANGED
@@ -972,6 +972,12 @@ var $;
972
972
  // [ Symbol.toPrimitive ]() {
973
973
  // return this.toString()
974
974
  // }
975
+ match(...args) {
976
+ return this.toString().match(...args);
977
+ }
978
+ split(...args) {
979
+ return this.toString().split(...args);
980
+ }
975
981
  toString() {
976
982
  return this.join('\n');
977
983
  }