mol_mutable 0.0.1229 → 0.0.1231
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/node.test.js
CHANGED
|
@@ -905,6 +905,12 @@ var $;
|
|
|
905
905
|
// [ Symbol.toPrimitive ]() {
|
|
906
906
|
// return this.toString()
|
|
907
907
|
// }
|
|
908
|
+
match(...args) {
|
|
909
|
+
return this.toString().match(...args);
|
|
910
|
+
}
|
|
911
|
+
split(...args) {
|
|
912
|
+
return this.toString().split(...args);
|
|
913
|
+
}
|
|
908
914
|
toString() {
|
|
909
915
|
return this.join('\n');
|
|
910
916
|
}
|