mol_crypto_lib 0.1.1696 → 0.1.1697
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.d.ts +4 -0
- package/node.d.ts.map +1 -1
- package/node.deps.json +1 -1
- package/node.js +30 -11
- package/node.js.map +1 -1
- package/node.mjs +30 -11
- package/node.test.js +1551 -1534
- package/node.test.js.map +1 -1
- package/package.json +5 -2
- package/web.test.js +0 -2
- package/web.test.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mol_crypto_lib",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1697",
|
|
4
4
|
"exports": {
|
|
5
5
|
"node": {
|
|
6
6
|
"import": "./node.mjs",
|
|
@@ -30,6 +30,8 @@
|
|
|
30
30
|
"$mol_crypto_salt",
|
|
31
31
|
"$mol_crypto_native",
|
|
32
32
|
"$node",
|
|
33
|
+
"$node_internal_check",
|
|
34
|
+
"$node_internal",
|
|
33
35
|
"$mol_exec",
|
|
34
36
|
"$mol_run",
|
|
35
37
|
"$mol_error_mix",
|
|
@@ -72,8 +74,8 @@
|
|
|
72
74
|
"$mol_maybe",
|
|
73
75
|
"$mol_term_color",
|
|
74
76
|
"$mol_term",
|
|
75
|
-
"$mol_fail_catch",
|
|
76
77
|
"$mol_fail_log",
|
|
78
|
+
"$mol_fail_catch",
|
|
77
79
|
"$mol_try",
|
|
78
80
|
"$mol_base64_url",
|
|
79
81
|
"$mol_crypto_restack",
|
|
@@ -90,6 +92,7 @@
|
|
|
90
92
|
"$mol_crypto_hash"
|
|
91
93
|
],
|
|
92
94
|
"dependencies": {
|
|
95
|
+
"internal": "*",
|
|
93
96
|
"jsdom": "*"
|
|
94
97
|
}
|
|
95
98
|
}
|
package/web.test.js
CHANGED
|
@@ -1243,8 +1243,6 @@ var $;
|
|
|
1243
1243
|
for (let i = 1; i < args.length; ++i) {
|
|
1244
1244
|
if ($mol_compare_deep(args[0], args[i]))
|
|
1245
1245
|
continue;
|
|
1246
|
-
if (args[0] instanceof $mol_dom_context.Element && args[i] instanceof $mol_dom_context.Element && args[0].outerHTML === args[i].outerHTML)
|
|
1247
|
-
continue;
|
|
1248
1246
|
return $mol_fail(new Error(`Equality assertion failure`, { cause: { 0: args[0], [i]: args[i] } }));
|
|
1249
1247
|
}
|
|
1250
1248
|
}
|