@jhqn/utils 0.0.1-beta.18 → 0.0.1-beta.19
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/crypto.d.ts +1 -0
- package/dist/core.d.ts +1 -0
- package/dist/crypto.cjs +4 -0
- package/dist/crypto.d.ts +1 -0
- package/dist/crypto.mjs +1 -0
- package/dist/index.cjs +4 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +6 -6
package/crypto.d.ts
CHANGED
package/dist/core.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export * from '@jhqn/utils-core';
|
|
|
2
2
|
import '@jhqn/utils-crypto';
|
|
3
3
|
import '@jhqn/utils-crypto/aes';
|
|
4
4
|
import '@jhqn/utils-crypto/base64';
|
|
5
|
+
import '@jhqn/utils-crypto/base64url';
|
|
5
6
|
import '@jhqn/utils-crypto/md5';
|
|
6
7
|
import '@jhqn/utils-faker';
|
|
7
8
|
import '@jhqn/utils-msw';
|
package/dist/crypto.cjs
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
const utilsCrypto = require('@jhqn/utils-crypto');
|
|
4
4
|
const aes = require('@jhqn/utils-crypto/aes');
|
|
5
5
|
const base64 = require('@jhqn/utils-crypto/base64');
|
|
6
|
+
const base64url = require('@jhqn/utils-crypto/base64url');
|
|
6
7
|
const md5 = require('@jhqn/utils-crypto/md5');
|
|
7
8
|
|
|
8
9
|
|
|
@@ -16,6 +17,9 @@ Object.keys(aes).forEach(function (k) {
|
|
|
16
17
|
Object.keys(base64).forEach(function (k) {
|
|
17
18
|
if (k !== 'default' && !exports.hasOwnProperty(k)) exports[k] = base64[k];
|
|
18
19
|
});
|
|
20
|
+
Object.keys(base64url).forEach(function (k) {
|
|
21
|
+
if (k !== 'default' && !exports.hasOwnProperty(k)) exports[k] = base64url[k];
|
|
22
|
+
});
|
|
19
23
|
Object.keys(md5).forEach(function (k) {
|
|
20
24
|
if (k !== 'default' && !exports.hasOwnProperty(k)) exports[k] = md5[k];
|
|
21
25
|
});
|
package/dist/crypto.d.ts
CHANGED
package/dist/crypto.mjs
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -4,6 +4,7 @@ const utilsCore = require('@jhqn/utils-core');
|
|
|
4
4
|
const utilsCrypto = require('@jhqn/utils-crypto');
|
|
5
5
|
const aes = require('@jhqn/utils-crypto/aes');
|
|
6
6
|
const base64 = require('@jhqn/utils-crypto/base64');
|
|
7
|
+
const base64url = require('@jhqn/utils-crypto/base64url');
|
|
7
8
|
const md5 = require('@jhqn/utils-crypto/md5');
|
|
8
9
|
const utilsFaker = require('@jhqn/utils-faker');
|
|
9
10
|
const utilsMsw = require('@jhqn/utils-msw');
|
|
@@ -23,6 +24,9 @@ Object.keys(aes).forEach(function (k) {
|
|
|
23
24
|
Object.keys(base64).forEach(function (k) {
|
|
24
25
|
if (k !== 'default' && !exports.hasOwnProperty(k)) exports[k] = base64[k];
|
|
25
26
|
});
|
|
27
|
+
Object.keys(base64url).forEach(function (k) {
|
|
28
|
+
if (k !== 'default' && !exports.hasOwnProperty(k)) exports[k] = base64url[k];
|
|
29
|
+
});
|
|
26
30
|
Object.keys(md5).forEach(function (k) {
|
|
27
31
|
if (k !== 'default' && !exports.hasOwnProperty(k)) exports[k] = md5[k];
|
|
28
32
|
});
|
package/dist/index.d.ts
CHANGED
|
@@ -4,5 +4,6 @@ export * from '@jhqn/utils-core';
|
|
|
4
4
|
export * from '@jhqn/utils-crypto';
|
|
5
5
|
export * from '@jhqn/utils-crypto/aes';
|
|
6
6
|
export * from '@jhqn/utils-crypto/base64';
|
|
7
|
+
export * from '@jhqn/utils-crypto/base64url';
|
|
7
8
|
export * from '@jhqn/utils-crypto/md5';
|
|
8
9
|
export * from '@jhqn/utils-faker';
|
package/dist/index.mjs
CHANGED
|
@@ -2,6 +2,7 @@ export * from '@jhqn/utils-core';
|
|
|
2
2
|
export * from '@jhqn/utils-crypto';
|
|
3
3
|
export * from '@jhqn/utils-crypto/aes';
|
|
4
4
|
export * from '@jhqn/utils-crypto/base64';
|
|
5
|
+
export * from '@jhqn/utils-crypto/base64url';
|
|
5
6
|
export * from '@jhqn/utils-crypto/md5';
|
|
6
7
|
export * from '@jhqn/utils-faker';
|
|
7
8
|
export * from '@jhqn/utils-msw';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jhqn/utils",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.1-beta.
|
|
4
|
+
"version": "0.0.1-beta.19",
|
|
5
5
|
"author": "jade-gjz <jiangang.zhang@jaderd.com>",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://github.com/jaderd-jh/utils/tree/main/packages/utils#readme",
|
|
@@ -73,11 +73,11 @@
|
|
|
73
73
|
"*.d.ts"
|
|
74
74
|
],
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@jhqn/utils-core": "0.0.1-beta.
|
|
77
|
-
"@jhqn/utils-crypto": "0.0.1-beta.
|
|
78
|
-
"@jhqn/utils-faker": "0.0.1-beta.
|
|
79
|
-
"@jhqn/utils-msw": "0.0.1-beta.
|
|
80
|
-
"@jhqn/utils-storage": "0.0.1-beta.
|
|
76
|
+
"@jhqn/utils-core": "0.0.1-beta.19",
|
|
77
|
+
"@jhqn/utils-crypto": "0.0.1-beta.19",
|
|
78
|
+
"@jhqn/utils-faker": "0.0.1-beta.19",
|
|
79
|
+
"@jhqn/utils-msw": "0.0.1-beta.19",
|
|
80
|
+
"@jhqn/utils-storage": "0.0.1-beta.19"
|
|
81
81
|
},
|
|
82
82
|
"scripts": {
|
|
83
83
|
"test": "vitest",
|