mol_jsx_lib 0.0.1613 → 0.0.1615
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
|
@@ -786,6 +786,12 @@ var $;
|
|
|
786
786
|
// [ Symbol.toPrimitive ]() {
|
|
787
787
|
// return this.toString()
|
|
788
788
|
// }
|
|
789
|
+
match(...args) {
|
|
790
|
+
return this.toString().match(...args);
|
|
791
|
+
}
|
|
792
|
+
split(...args) {
|
|
793
|
+
return this.toString().split(...args);
|
|
794
|
+
}
|
|
789
795
|
toString() {
|
|
790
796
|
return this.join('\n');
|
|
791
797
|
}
|