mol_wire_lib 1.0.1749 → 1.0.1751

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.mjs CHANGED
@@ -358,6 +358,9 @@ var $;
358
358
  // [ Symbol.toPrimitive ]() {
359
359
  // return this.toString()
360
360
  // }
361
+ split(...args) {
362
+ return this.toString().split(...args);
363
+ }
361
364
  toString() {
362
365
  return this.join('\n');
363
366
  }
package/node.test.js CHANGED
@@ -349,6 +349,9 @@ var $;
349
349
  // [ Symbol.toPrimitive ]() {
350
350
  // return this.toString()
351
351
  // }
352
+ split(...args) {
353
+ return this.toString().split(...args);
354
+ }
352
355
  toString() {
353
356
  return this.join('\n');
354
357
  }