@fangzhongya/utils 0.0.65 → 0.0.67
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/dist/basic/index.cjs +21 -21
- package/dist/basic/index.js +20 -20
- package/dist/basic/object/deepCopy.cjs +2 -2
- package/dist/basic/object/deepCopy.d.cts +1 -3
- package/dist/basic/object/deepCopy.d.ts +1 -3
- package/dist/basic/object/deepCopy.js +1 -1
- package/dist/basic/object/index.cjs +13 -13
- package/dist/basic/object/index.js +18 -18
- package/dist/basic/string/index.cjs +10 -10
- package/dist/basic/string/index.js +12 -12
- package/dist/basic/string/toJsons.cjs +3 -3
- package/dist/basic/string/toJsons.js +2 -2
- package/dist/chunk-2HQDHQFP.cjs +299 -0
- package/dist/{chunk-F4E66MPZ.js → chunk-5S7QXY2L.js} +4 -4
- package/dist/{chunk-X44UO4CZ.js → chunk-7VGVDOZH.js} +12 -12
- package/dist/{chunk-MZLWYQQH.js → chunk-BBL7TBP6.js} +22 -6
- package/dist/{chunk-TV763MO4.cjs → chunk-BKOSCF7N.cjs} +4 -4
- package/dist/chunk-BRIQCC74.js +28 -0
- package/dist/{chunk-FL2HPQ66.cjs → chunk-J2WRN55J.cjs} +6 -6
- package/dist/chunk-LJVOVGGV.js +299 -0
- package/dist/{chunk-72GMBSE6.cjs → chunk-SD6NUAET.cjs} +18 -2
- package/dist/{chunk-CGDNKEYI.js → chunk-SMAXQU2I.js} +10 -10
- package/dist/{chunk-XLYPGPDB.cjs → chunk-UUMPCJJ2.cjs} +11 -11
- package/dist/{chunk-7M7ORCKS.js → chunk-XM4WSZJV.js} +17 -17
- package/dist/chunk-YTSFTRYZ.cjs +28 -0
- package/dist/{chunk-KZCLX66D.cjs → chunk-Z2QP5DBD.cjs} +12 -12
- package/dist/css/index.cjs +4 -4
- package/dist/css/index.js +4 -4
- package/dist/date/index.cjs +4 -4
- package/dist/date/index.js +4 -4
- package/dist/dom/index.cjs +3 -3
- package/dist/dom/index.js +4 -4
- package/dist/html/index.cjs +6 -6
- package/dist/html/index.js +6 -6
- package/dist/index-B8ZJILol.d.cts +30 -0
- package/dist/index-DGgeqhym.d.ts +30 -0
- package/dist/index.cjs +62 -61
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +64 -63
- package/dist/judge/index.cjs +7 -7
- package/dist/judge/index.js +13 -13
- package/dist/judge/matchs.cjs +3 -3
- package/dist/judge/matchs.js +2 -2
- package/dist/window/index.cjs +19 -3
- package/dist/window/index.d.cts +1 -0
- package/dist/window/index.d.ts +1 -0
- package/dist/window/index.js +23 -7
- package/dist/window/storage.cjs +19 -0
- package/dist/window/storage.d.cts +37 -0
- package/dist/window/storage.d.ts +37 -0
- package/dist/window/storage.js +19 -0
- package/package.json +6 -1
- package/dist/chunk-PBQPPZ4V.cjs +0 -23
- package/dist/chunk-SD2RWG3L.js +0 -23
- package/dist/index-9-f0oXM3.d.ts +0 -22
- package/dist/index-_GH04n6g.d.cts +0 -22
- package/dist/{chunk-TKE7IK2M.cjs → chunk-3QB3GKVL.cjs} +2 -2
- package/dist/{chunk-H22VVRP6.js → chunk-5VGZQLUQ.js} +3 -3
- package/dist/{chunk-4JXZQBCA.js → chunk-EJZIISBA.js} +3 -3
- package/dist/{chunk-Z3BZ5W5W.js → chunk-GPFPHJRZ.js} +3 -3
- package/dist/{chunk-5SOPYS7L.cjs → chunk-JI6PHVDX.cjs} +3 -3
- package/dist/{chunk-ZUIHJQD6.cjs → chunk-PKFURLQT.cjs} +2 -2
- package/dist/{chunk-FLGYKRQ6.cjs → chunk-QN6KZWKM.cjs} +3 -3
- package/dist/{chunk-M7CA6X7T.js → chunk-RGBFHCCJ.js} +3 -3
- package/dist/{chunk-3YUI42XN.cjs → chunk-T22I7TJQ.cjs} +3 -3
- package/dist/{chunk-33X65PQS.js → chunk-T2QKEABG.js} +3 -3
- package/dist/{chunk-ZADO6V3Z.js → chunk-VJKUTNCV.js} +3 -3
- package/dist/{chunk-XDTLZL44.cjs → chunk-YHM42KJI.cjs} +3 -3
|
@@ -0,0 +1,299 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }// packages/window/storage.ts
|
|
2
|
+
var STORAGE = "fang-storage";
|
|
3
|
+
function getKey(key, config = {}) {
|
|
4
|
+
const { prefix, isCom = false } = config;
|
|
5
|
+
if (prefix) {
|
|
6
|
+
return `${prefix}.${key}`;
|
|
7
|
+
}
|
|
8
|
+
return isCom ? key : `${STORAGE}.${key}`;
|
|
9
|
+
}
|
|
10
|
+
function simpleEncrypt(data) {
|
|
11
|
+
return btoa(encodeURIComponent(data));
|
|
12
|
+
}
|
|
13
|
+
function simpleDecrypt(encrypted) {
|
|
14
|
+
try {
|
|
15
|
+
return decodeURIComponent(atob(encrypted));
|
|
16
|
+
} catch (e) {
|
|
17
|
+
return "";
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
function isExpired(expires) {
|
|
21
|
+
if (!expires) return false;
|
|
22
|
+
return Date.now() > expires;
|
|
23
|
+
}
|
|
24
|
+
function normalizeConfig(config) {
|
|
25
|
+
return {
|
|
26
|
+
isCom: false,
|
|
27
|
+
...config
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
function setLocal(key, value = "", config = {}) {
|
|
31
|
+
try {
|
|
32
|
+
if (value === void 0 || value === null) value = "";
|
|
33
|
+
const normalizedConfig = normalizeConfig(config);
|
|
34
|
+
const storedData = {
|
|
35
|
+
value,
|
|
36
|
+
config: void 0
|
|
37
|
+
};
|
|
38
|
+
if (Object.keys(normalizedConfig).length > 0) {
|
|
39
|
+
storedData.config = {};
|
|
40
|
+
if (normalizedConfig.expires) {
|
|
41
|
+
let expires;
|
|
42
|
+
if (typeof normalizedConfig.expires === "string") {
|
|
43
|
+
expires = new Date(normalizedConfig.expires).getTime();
|
|
44
|
+
} else {
|
|
45
|
+
expires = Date.now() + normalizedConfig.expires;
|
|
46
|
+
}
|
|
47
|
+
storedData.config.expires = expires;
|
|
48
|
+
}
|
|
49
|
+
if (normalizedConfig.once !== void 0) {
|
|
50
|
+
storedData.config.once = normalizedConfig.once;
|
|
51
|
+
}
|
|
52
|
+
if (normalizedConfig.encrypt !== void 0) {
|
|
53
|
+
storedData.config.encrypt = normalizedConfig.encrypt;
|
|
54
|
+
}
|
|
55
|
+
if (normalizedConfig.isCom !== void 0) {
|
|
56
|
+
storedData.config.isCom = normalizedConfig.isCom;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
let dataToStore = JSON.stringify(storedData);
|
|
60
|
+
if (_optionalChain([storedData, 'access', _ => _.config, 'optionalAccess', _2 => _2.encrypt])) {
|
|
61
|
+
dataToStore = simpleEncrypt(dataToStore);
|
|
62
|
+
}
|
|
63
|
+
localStorage.setItem(getKey(key, normalizedConfig), dataToStore);
|
|
64
|
+
return true;
|
|
65
|
+
} catch (error) {
|
|
66
|
+
console.error("\u5B58\u50A8\u6570\u636E\u5931\u8D25:", error);
|
|
67
|
+
return false;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
function getLocal(key, config = {}) {
|
|
71
|
+
try {
|
|
72
|
+
const normalizedConfig = normalizeConfig(config);
|
|
73
|
+
const storageKey = getKey(key, normalizedConfig);
|
|
74
|
+
let storedItem = localStorage.getItem(storageKey);
|
|
75
|
+
if (!storedItem || storedItem === "null" || storedItem === "undefined") {
|
|
76
|
+
return null;
|
|
77
|
+
}
|
|
78
|
+
let parsedData;
|
|
79
|
+
try {
|
|
80
|
+
parsedData = JSON.parse(storedItem);
|
|
81
|
+
} catch (e2) {
|
|
82
|
+
const decrypted = simpleDecrypt(storedItem);
|
|
83
|
+
if (!decrypted) return null;
|
|
84
|
+
parsedData = JSON.parse(decrypted);
|
|
85
|
+
}
|
|
86
|
+
if (_optionalChain([parsedData, 'access', _3 => _3.config, 'optionalAccess', _4 => _4.expires]) && isExpired(parsedData.config.expires)) {
|
|
87
|
+
localStorage.removeItem(storageKey);
|
|
88
|
+
return null;
|
|
89
|
+
}
|
|
90
|
+
if (_optionalChain([parsedData, 'access', _5 => _5.config, 'optionalAccess', _6 => _6.once])) {
|
|
91
|
+
localStorage.removeItem(storageKey);
|
|
92
|
+
}
|
|
93
|
+
return parsedData.value;
|
|
94
|
+
} catch (error) {
|
|
95
|
+
console.error("\u83B7\u53D6\u6570\u636E\u5931\u8D25:", error);
|
|
96
|
+
return null;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
function clearLocal(key, config = {}) {
|
|
100
|
+
try {
|
|
101
|
+
const normalizedConfig = normalizeConfig(config);
|
|
102
|
+
if (key) {
|
|
103
|
+
localStorage.removeItem(getKey(key, normalizedConfig));
|
|
104
|
+
} else {
|
|
105
|
+
if (normalizedConfig.prefix) {
|
|
106
|
+
const prefixKey = getKey("", normalizedConfig).replace(
|
|
107
|
+
/\.$/,
|
|
108
|
+
""
|
|
109
|
+
);
|
|
110
|
+
const keysToRemove = [];
|
|
111
|
+
for (let i = 0; i < localStorage.length; i++) {
|
|
112
|
+
const storageKey = localStorage.key(i);
|
|
113
|
+
if (storageKey && storageKey.startsWith(prefixKey + ".")) {
|
|
114
|
+
keysToRemove.push(storageKey);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
keysToRemove.forEach((k) => localStorage.removeItem(k));
|
|
118
|
+
} else if (normalizedConfig.isCom) {
|
|
119
|
+
localStorage.clear();
|
|
120
|
+
} else {
|
|
121
|
+
const keysToRemove = [];
|
|
122
|
+
const privatePrefix = `${STORAGE}.`;
|
|
123
|
+
for (let i = 0; i < localStorage.length; i++) {
|
|
124
|
+
const storageKey = localStorage.key(i);
|
|
125
|
+
if (storageKey && storageKey.startsWith(privatePrefix)) {
|
|
126
|
+
keysToRemove.push(storageKey);
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
keysToRemove.forEach((k) => localStorage.removeItem(k));
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
return true;
|
|
133
|
+
} catch (error) {
|
|
134
|
+
console.error("\u6E05\u9664\u6570\u636E\u5931\u8D25:", error);
|
|
135
|
+
return false;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
function setSession(key, value = "", config = {}) {
|
|
139
|
+
try {
|
|
140
|
+
if (value === void 0 || value === null) value = "";
|
|
141
|
+
const normalizedConfig = normalizeConfig(config);
|
|
142
|
+
const storedData = {
|
|
143
|
+
value,
|
|
144
|
+
config: void 0
|
|
145
|
+
};
|
|
146
|
+
if (Object.keys(normalizedConfig).length > 0) {
|
|
147
|
+
storedData.config = {};
|
|
148
|
+
if (normalizedConfig.expires) {
|
|
149
|
+
let expires;
|
|
150
|
+
if (typeof normalizedConfig.expires === "string") {
|
|
151
|
+
expires = new Date(normalizedConfig.expires).getTime();
|
|
152
|
+
} else {
|
|
153
|
+
expires = Date.now() + normalizedConfig.expires;
|
|
154
|
+
}
|
|
155
|
+
storedData.config.expires = expires;
|
|
156
|
+
}
|
|
157
|
+
if (normalizedConfig.once !== void 0) {
|
|
158
|
+
storedData.config.once = normalizedConfig.once;
|
|
159
|
+
}
|
|
160
|
+
if (normalizedConfig.encrypt !== void 0) {
|
|
161
|
+
storedData.config.encrypt = normalizedConfig.encrypt;
|
|
162
|
+
}
|
|
163
|
+
if (normalizedConfig.isCom !== void 0) {
|
|
164
|
+
storedData.config.isCom = normalizedConfig.isCom;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
let dataToStore = JSON.stringify(storedData);
|
|
168
|
+
if (_optionalChain([storedData, 'access', _7 => _7.config, 'optionalAccess', _8 => _8.encrypt])) {
|
|
169
|
+
dataToStore = simpleEncrypt(dataToStore);
|
|
170
|
+
}
|
|
171
|
+
sessionStorage.setItem(getKey(key, normalizedConfig), dataToStore);
|
|
172
|
+
return true;
|
|
173
|
+
} catch (error) {
|
|
174
|
+
console.error("\u4F1A\u8BDD\u5B58\u50A8\u6570\u636E\u5931\u8D25:", error);
|
|
175
|
+
return false;
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
function getSession(key, config = {}) {
|
|
179
|
+
try {
|
|
180
|
+
const normalizedConfig = normalizeConfig(config);
|
|
181
|
+
const storageKey = getKey(key, normalizedConfig);
|
|
182
|
+
let storedItem = sessionStorage.getItem(storageKey);
|
|
183
|
+
if (!storedItem || storedItem === "null" || storedItem === "undefined") {
|
|
184
|
+
return null;
|
|
185
|
+
}
|
|
186
|
+
let parsedData;
|
|
187
|
+
try {
|
|
188
|
+
parsedData = JSON.parse(storedItem);
|
|
189
|
+
} catch (e3) {
|
|
190
|
+
const decrypted = simpleDecrypt(storedItem);
|
|
191
|
+
if (!decrypted) return null;
|
|
192
|
+
parsedData = JSON.parse(decrypted);
|
|
193
|
+
}
|
|
194
|
+
if (_optionalChain([parsedData, 'access', _9 => _9.config, 'optionalAccess', _10 => _10.expires]) && isExpired(parsedData.config.expires)) {
|
|
195
|
+
sessionStorage.removeItem(storageKey);
|
|
196
|
+
return null;
|
|
197
|
+
}
|
|
198
|
+
if (_optionalChain([parsedData, 'access', _11 => _11.config, 'optionalAccess', _12 => _12.once])) {
|
|
199
|
+
sessionStorage.removeItem(storageKey);
|
|
200
|
+
}
|
|
201
|
+
return parsedData.value;
|
|
202
|
+
} catch (error) {
|
|
203
|
+
console.error("\u83B7\u53D6\u4F1A\u8BDD\u6570\u636E\u5931\u8D25:", error);
|
|
204
|
+
return null;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
function clearSession(key, config = {}) {
|
|
208
|
+
try {
|
|
209
|
+
const normalizedConfig = normalizeConfig(config);
|
|
210
|
+
if (key) {
|
|
211
|
+
sessionStorage.removeItem(getKey(key, normalizedConfig));
|
|
212
|
+
} else {
|
|
213
|
+
if (normalizedConfig.prefix) {
|
|
214
|
+
const prefixKey = getKey("", normalizedConfig).replace(
|
|
215
|
+
/\.$/,
|
|
216
|
+
""
|
|
217
|
+
);
|
|
218
|
+
const keysToRemove = [];
|
|
219
|
+
for (let i = 0; i < sessionStorage.length; i++) {
|
|
220
|
+
const storageKey = sessionStorage.key(i);
|
|
221
|
+
if (storageKey && storageKey.startsWith(prefixKey + ".")) {
|
|
222
|
+
keysToRemove.push(storageKey);
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
keysToRemove.forEach((k) => sessionStorage.removeItem(k));
|
|
226
|
+
} else if (normalizedConfig.isCom) {
|
|
227
|
+
sessionStorage.clear();
|
|
228
|
+
} else {
|
|
229
|
+
const keysToRemove = [];
|
|
230
|
+
const privatePrefix = `${STORAGE}.`;
|
|
231
|
+
for (let i = 0; i < sessionStorage.length; i++) {
|
|
232
|
+
const storageKey = sessionStorage.key(i);
|
|
233
|
+
if (storageKey && storageKey.startsWith(privatePrefix)) {
|
|
234
|
+
keysToRemove.push(storageKey);
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
keysToRemove.forEach((k) => sessionStorage.removeItem(k));
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
return true;
|
|
241
|
+
} catch (error) {
|
|
242
|
+
console.error("\u6E05\u9664\u4F1A\u8BDD\u6570\u636E\u5931\u8D25:", error);
|
|
243
|
+
return false;
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
function cleanupExpired() {
|
|
247
|
+
for (let i = 0; i < localStorage.length; i++) {
|
|
248
|
+
const key = localStorage.key(i);
|
|
249
|
+
if (key) {
|
|
250
|
+
try {
|
|
251
|
+
const item = localStorage.getItem(key);
|
|
252
|
+
if (item) {
|
|
253
|
+
let parsedData;
|
|
254
|
+
try {
|
|
255
|
+
parsedData = JSON.parse(item);
|
|
256
|
+
} catch (e4) {
|
|
257
|
+
continue;
|
|
258
|
+
}
|
|
259
|
+
if (_optionalChain([parsedData, 'access', _13 => _13.config, 'optionalAccess', _14 => _14.expires]) && isExpired(parsedData.config.expires)) {
|
|
260
|
+
localStorage.removeItem(key);
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
} catch (error) {
|
|
264
|
+
console.error(`\u6E05\u7406\u8FC7\u671F\u6570\u636E\u5931\u8D25 (key: ${key}):`, error);
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
for (let i = 0; i < sessionStorage.length; i++) {
|
|
269
|
+
const key = sessionStorage.key(i);
|
|
270
|
+
if (key) {
|
|
271
|
+
try {
|
|
272
|
+
const item = sessionStorage.getItem(key);
|
|
273
|
+
if (item) {
|
|
274
|
+
let parsedData;
|
|
275
|
+
try {
|
|
276
|
+
parsedData = JSON.parse(item);
|
|
277
|
+
} catch (e5) {
|
|
278
|
+
continue;
|
|
279
|
+
}
|
|
280
|
+
if (_optionalChain([parsedData, 'access', _15 => _15.config, 'optionalAccess', _16 => _16.expires]) && isExpired(parsedData.config.expires)) {
|
|
281
|
+
sessionStorage.removeItem(key);
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
} catch (error) {
|
|
285
|
+
console.error(`\u6E05\u7406\u4F1A\u8BDD\u8FC7\u671F\u6570\u636E\u5931\u8D25 (key: ${key}):`, error);
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
exports.setLocal = setLocal; exports.getLocal = getLocal; exports.clearLocal = clearLocal; exports.setSession = setSession; exports.getSession = getSession; exports.clearSession = clearSession; exports.cleanupExpired = cleanupExpired;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
string_exports
|
|
3
|
-
} from "./chunk-CGDNKEYI.js";
|
|
4
1
|
import {
|
|
5
2
|
object_exports
|
|
6
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-XM4WSZJV.js";
|
|
4
|
+
import {
|
|
5
|
+
string_exports
|
|
6
|
+
} from "./chunk-SMAXQU2I.js";
|
|
7
7
|
import {
|
|
8
8
|
array_exports
|
|
9
9
|
} from "./chunk-PVXQ2H5H.js";
|
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
import {
|
|
2
|
+
matchs
|
|
3
|
+
} from "./chunk-T2QKEABG.js";
|
|
4
|
+
import {
|
|
5
|
+
matchsEnd
|
|
6
|
+
} from "./chunk-YNOFNHEK.js";
|
|
7
|
+
import {
|
|
8
|
+
matchsStart
|
|
9
|
+
} from "./chunk-S6JRKYPY.js";
|
|
10
|
+
import {
|
|
11
|
+
matchsWhole
|
|
12
|
+
} from "./chunk-IRGCP7KH.js";
|
|
1
13
|
import {
|
|
2
14
|
isAlphaNumeric,
|
|
3
15
|
isBankCode,
|
|
@@ -25,18 +37,6 @@ import {
|
|
|
25
37
|
isURL,
|
|
26
38
|
isWeChat
|
|
27
39
|
} from "./chunk-PLNZCEDI.js";
|
|
28
|
-
import {
|
|
29
|
-
matchs
|
|
30
|
-
} from "./chunk-33X65PQS.js";
|
|
31
|
-
import {
|
|
32
|
-
matchsWhole
|
|
33
|
-
} from "./chunk-IRGCP7KH.js";
|
|
34
|
-
import {
|
|
35
|
-
matchsEnd
|
|
36
|
-
} from "./chunk-YNOFNHEK.js";
|
|
37
|
-
import {
|
|
38
|
-
matchsStart
|
|
39
|
-
} from "./chunk-S6JRKYPY.js";
|
|
40
40
|
import {
|
|
41
41
|
__export
|
|
42
42
|
} from "./chunk-MLKGABMK.js";
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
cleanupExpired,
|
|
3
|
+
clearLocal,
|
|
4
|
+
clearSession,
|
|
5
|
+
getLocal,
|
|
6
|
+
getSession,
|
|
7
|
+
setLocal,
|
|
8
|
+
setSession
|
|
9
|
+
} from "./chunk-LJVOVGGV.js";
|
|
7
10
|
import {
|
|
8
11
|
copy
|
|
9
12
|
} from "./chunk-W45DTA4D.js";
|
|
@@ -17,6 +20,12 @@ import {
|
|
|
17
20
|
downloadText,
|
|
18
21
|
downloadViaAJAX
|
|
19
22
|
} from "./chunk-ZLEU2YQ2.js";
|
|
23
|
+
import {
|
|
24
|
+
getAllParams,
|
|
25
|
+
getParam,
|
|
26
|
+
getUrlParam,
|
|
27
|
+
getUrlParams
|
|
28
|
+
} from "./chunk-MCT2IB67.js";
|
|
20
29
|
import {
|
|
21
30
|
__export
|
|
22
31
|
} from "./chunk-MLKGABMK.js";
|
|
@@ -24,6 +33,9 @@ import {
|
|
|
24
33
|
// packages/window/index.ts
|
|
25
34
|
var window_exports = {};
|
|
26
35
|
__export(window_exports, {
|
|
36
|
+
cleanupExpired: () => cleanupExpired,
|
|
37
|
+
clearLocal: () => clearLocal,
|
|
38
|
+
clearSession: () => clearSession,
|
|
27
39
|
copy: () => copy,
|
|
28
40
|
downloadCSV: () => downloadCSV,
|
|
29
41
|
downloadFile: () => downloadFile,
|
|
@@ -34,9 +46,13 @@ __export(window_exports, {
|
|
|
34
46
|
downloadText: () => downloadText,
|
|
35
47
|
downloadViaAJAX: () => downloadViaAJAX,
|
|
36
48
|
getAllParams: () => getAllParams,
|
|
49
|
+
getLocal: () => getLocal,
|
|
37
50
|
getParam: () => getParam,
|
|
51
|
+
getSession: () => getSession,
|
|
38
52
|
getUrlParam: () => getUrlParam,
|
|
39
|
-
getUrlParams: () => getUrlParams
|
|
53
|
+
getUrlParams: () => getUrlParams,
|
|
54
|
+
setLocal: () => setLocal,
|
|
55
|
+
setSession: () => setSession
|
|
40
56
|
});
|
|
41
57
|
|
|
42
58
|
export {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkZ2QP5DBDcjs = require('./chunk-Z2QP5DBD.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkUUMPCJJ2cjs = require('./chunk-UUMPCJJ2.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
var _chunk65O7KWP4cjs = require('./chunk-65O7KWP4.cjs');
|
|
@@ -15,8 +15,8 @@ var _chunk75ZPJI57cjs = require('./chunk-75ZPJI57.cjs');
|
|
|
15
15
|
var basic_exports = {};
|
|
16
16
|
_chunk75ZPJI57cjs.__export.call(void 0, basic_exports, {
|
|
17
17
|
array: () => _chunk65O7KWP4cjs.array_exports,
|
|
18
|
-
object: () =>
|
|
19
|
-
string: () =>
|
|
18
|
+
object: () => _chunkZ2QP5DBDcjs.object_exports,
|
|
19
|
+
string: () => _chunkUUMPCJJ2cjs.string_exports
|
|
20
20
|
});
|
|
21
21
|
|
|
22
22
|
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// packages/basic/object/deepCopy.ts
|
|
2
|
+
function deepCopy(obj, filter = () => true) {
|
|
3
|
+
if (obj === null || obj === void 0 || typeof obj !== "object") {
|
|
4
|
+
return obj;
|
|
5
|
+
}
|
|
6
|
+
if (obj instanceof Date) {
|
|
7
|
+
return new Date(obj.getTime());
|
|
8
|
+
}
|
|
9
|
+
if (obj instanceof RegExp) {
|
|
10
|
+
return new RegExp(obj.source, obj.flags);
|
|
11
|
+
}
|
|
12
|
+
if (Array.isArray(obj)) {
|
|
13
|
+
return obj.map((item) => deepCopy(item, filter));
|
|
14
|
+
}
|
|
15
|
+
const copy = {};
|
|
16
|
+
for (const key in obj) {
|
|
17
|
+
if (Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
18
|
+
if (filter(key)) {
|
|
19
|
+
copy[key] = deepCopy(obj[key], filter);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
return copy;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export {
|
|
27
|
+
deepCopy
|
|
28
|
+
};
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
+
var _chunkT22I7TJQcjs = require('./chunk-T22I7TJQ.cjs');
|
|
3
4
|
|
|
4
5
|
|
|
6
|
+
var _chunkYGJOBIEOcjs = require('./chunk-YGJOBIEO.cjs');
|
|
5
7
|
|
|
6
8
|
|
|
9
|
+
var _chunkZZEFL2TEcjs = require('./chunk-ZZEFL2TE.cjs');
|
|
7
10
|
|
|
8
11
|
|
|
12
|
+
var _chunk2BY5RQHUcjs = require('./chunk-2BY5RQHU.cjs');
|
|
9
13
|
|
|
10
14
|
|
|
11
15
|
|
|
@@ -24,19 +28,15 @@
|
|
|
24
28
|
|
|
25
29
|
|
|
26
30
|
|
|
27
|
-
var _chunkV2DXOH6Bcjs = require('./chunk-V2DXOH6B.cjs');
|
|
28
31
|
|
|
29
32
|
|
|
30
|
-
var _chunk3YUI42XNcjs = require('./chunk-3YUI42XN.cjs');
|
|
31
33
|
|
|
32
34
|
|
|
33
|
-
var _chunk2BY5RQHUcjs = require('./chunk-2BY5RQHU.cjs');
|
|
34
35
|
|
|
35
36
|
|
|
36
|
-
var _chunkYGJOBIEOcjs = require('./chunk-YGJOBIEO.cjs');
|
|
37
37
|
|
|
38
38
|
|
|
39
|
-
var
|
|
39
|
+
var _chunkV2DXOH6Bcjs = require('./chunk-V2DXOH6B.cjs');
|
|
40
40
|
|
|
41
41
|
|
|
42
42
|
var _chunk75ZPJI57cjs = require('./chunk-75ZPJI57.cjs');
|
|
@@ -69,7 +69,7 @@ _chunk75ZPJI57cjs.__export.call(void 0, judge_exports, {
|
|
|
69
69
|
isTel: () => _chunkV2DXOH6Bcjs.isTel,
|
|
70
70
|
isURL: () => _chunkV2DXOH6Bcjs.isURL,
|
|
71
71
|
isWeChat: () => _chunkV2DXOH6Bcjs.isWeChat,
|
|
72
|
-
matchs: () =>
|
|
72
|
+
matchs: () => _chunkT22I7TJQcjs.matchs,
|
|
73
73
|
matchsEnd: () => _chunkYGJOBIEOcjs.matchsEnd,
|
|
74
74
|
matchsStart: () => _chunkZZEFL2TEcjs.matchsStart,
|
|
75
75
|
matchsWhole: () => _chunk2BY5RQHUcjs.matchsWhole
|