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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mol_crypto2_lib",
3
- "version": "0.0.47",
3
+ "version": "0.0.49",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
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
  }