mol_crypto2_lib 0.0.47 → 0.0.49
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.test.js +6 -0
- package/web.test.js.map +1 -1
package/package.json
CHANGED
package/web.test.js
CHANGED
|
@@ -1154,6 +1154,12 @@ var $;
|
|
|
1154
1154
|
// [ Symbol.toPrimitive ]() {
|
|
1155
1155
|
// return this.toString()
|
|
1156
1156
|
// }
|
|
1157
|
+
match(...args) {
|
|
1158
|
+
return this.toString().match(...args);
|
|
1159
|
+
}
|
|
1160
|
+
split(...args) {
|
|
1161
|
+
return this.toString().split(...args);
|
|
1162
|
+
}
|
|
1157
1163
|
toString() {
|
|
1158
1164
|
return this.join('\n');
|
|
1159
1165
|
}
|