mol_tree2 1.0.1405 → 1.0.1407
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.test.js +6 -0
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.test.js +6 -0
- package/web.test.js.map +1 -1
package/package.json
CHANGED
package/web.test.js
CHANGED
|
@@ -1174,6 +1174,12 @@ var $;
|
|
|
1174
1174
|
// [ Symbol.toPrimitive ]() {
|
|
1175
1175
|
// return this.toString()
|
|
1176
1176
|
// }
|
|
1177
|
+
match(...args) {
|
|
1178
|
+
return this.toString().match(...args);
|
|
1179
|
+
}
|
|
1180
|
+
split(...args) {
|
|
1181
|
+
return this.toString().split(...args);
|
|
1182
|
+
}
|
|
1177
1183
|
toString() {
|
|
1178
1184
|
return this.join('\n');
|
|
1179
1185
|
}
|