mol_tree2 1.0.1405 → 1.0.1407

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mol_tree2",
3
- "version": "1.0.1405",
3
+ "version": "1.0.1407",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
package/web.test.js CHANGED
@@ -1174,6 +1174,12 @@ var $;
1174
1174
  // [ Symbol.toPrimitive ]() {
1175
1175
  // return this.toString()
1176
1176
  // }
1177
+ match(...args) {
1178
+ return this.toString().match(...args);
1179
+ }
1180
+ split(...args) {
1181
+ return this.toString().split(...args);
1182
+ }
1177
1183
  toString() {
1178
1184
  return this.join('\n');
1179
1185
  }