mol_data_all 1.1.1795 → 1.1.1796

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
@@ -1442,6 +1442,12 @@ var $;
1442
1442
  // [ Symbol.toPrimitive ]() {
1443
1443
  // return this.toString()
1444
1444
  // }
1445
+ match(...args) {
1446
+ return this.toString().match(...args);
1447
+ }
1448
+ split(...args) {
1449
+ return this.toString().split(...args);
1450
+ }
1445
1451
  toString() {
1446
1452
  return this.join('\n');
1447
1453
  }