mol_plot_all 1.2.1716 → 1.2.1717
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/node.js
CHANGED
|
@@ -788,6 +788,12 @@ var $;
|
|
|
788
788
|
// [ Symbol.toPrimitive ]() {
|
|
789
789
|
// return this.toString()
|
|
790
790
|
// }
|
|
791
|
+
match(...args) {
|
|
792
|
+
return this.toString().match(...args);
|
|
793
|
+
}
|
|
794
|
+
split(...args) {
|
|
795
|
+
return this.toString().split(...args);
|
|
796
|
+
}
|
|
791
797
|
toString() {
|
|
792
798
|
return this.join('\n');
|
|
793
799
|
}
|