mol_regexp 0.0.1851 → 0.0.1852

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
@@ -1193,6 +1193,12 @@ var $;
1193
1193
  // [ Symbol.toPrimitive ]() {
1194
1194
  // return this.toString()
1195
1195
  // }
1196
+ match(...args) {
1197
+ return this.toString().match(...args);
1198
+ }
1199
+ split(...args) {
1200
+ return this.toString().split(...args);
1201
+ }
1196
1202
  toString() {
1197
1203
  return this.join('\n');
1198
1204
  }