mol_wire_lib 1.0.1750 → 1.0.1752
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.deps.json +1 -1
- package/node.js +6 -0
- package/node.js.map +1 -1
- package/node.mjs +6 -0
- package/node.test.js +6 -0
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.deps.json +1 -1
- package/web.js +6 -0
- package/web.js.map +1 -1
- package/web.mjs +6 -0
package/web.mjs
CHANGED
|
@@ -358,6 +358,12 @@ var $;
|
|
|
358
358
|
// [ Symbol.toPrimitive ]() {
|
|
359
359
|
// return this.toString()
|
|
360
360
|
// }
|
|
361
|
+
match(...args) {
|
|
362
|
+
return this.toString().match(...args);
|
|
363
|
+
}
|
|
364
|
+
split(...args) {
|
|
365
|
+
return this.toString().split(...args);
|
|
366
|
+
}
|
|
361
367
|
toString() {
|
|
362
368
|
return this.join('\n');
|
|
363
369
|
}
|