mol_compare_deep 0.0.1585 → 0.0.1587

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
@@ -480,6 +480,12 @@ var $;
480
480
  // [ Symbol.toPrimitive ]() {
481
481
  // return this.toString()
482
482
  // }
483
+ match(...args) {
484
+ return this.toString().match(...args);
485
+ }
486
+ split(...args) {
487
+ return this.toString().split(...args);
488
+ }
483
489
  toString() {
484
490
  return this.join('\n');
485
491
  }