mol_conform 0.0.273 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mol_conform",
3
- "version": "0.0.273",
3
+ "version": "0.0.274",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
package/web.test.js CHANGED
@@ -1194,6 +1194,12 @@ var $;
1194
1194
  // [ Symbol.toPrimitive ]() {
1195
1195
  // return this.toString()
1196
1196
  // }
1197
+ match(...args) {
1198
+ return this.toString().match(...args);
1199
+ }
1200
+ split(...args) {
1201
+ return this.toString().split(...args);
1202
+ }
1197
1203
  toString() {
1198
1204
  return this.join('\n');
1199
1205
  }