mol_charset_ucf 0.0.106 → 0.0.108
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
|
@@ -2041,6 +2041,12 @@ var $;
|
|
|
2041
2041
|
// [ Symbol.toPrimitive ]() {
|
|
2042
2042
|
// return this.toString()
|
|
2043
2043
|
// }
|
|
2044
|
+
match(...args) {
|
|
2045
|
+
return this.toString().match(...args);
|
|
2046
|
+
}
|
|
2047
|
+
split(...args) {
|
|
2048
|
+
return this.toString().split(...args);
|
|
2049
|
+
}
|
|
2044
2050
|
toString() {
|
|
2045
2051
|
return this.join('\n');
|
|
2046
2052
|
}
|