@gateweb/react-utils 1.7.1 → 1.8.0

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/cjs/index.js CHANGED
@@ -1,9 +1,9 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
 
3
3
  var dayjs = require('dayjs');
4
+ var queryStoreClient = require('./queryStore-client-q_SLGgYH.js');
4
5
  var useCountdownClient = require('./useCountdown-client-uiqhgllY.js');
5
6
  var React = require('react');
6
- var queryStoreClient = require('./queryStore-client-q_SLGgYH.js');
7
7
  var downloadClient = require('./download-client-DKxkL92w.js');
8
8
  var webStorageClient = require('./webStorage-client-BGQKUfrO.js');
9
9
 
@@ -11,302 +11,149 @@ function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
11
11
 
12
12
  var dayjs__default = /*#__PURE__*/_interopDefault(dayjs);
13
13
 
14
+ const FILE_SIZE_UNITS$1 = [
15
+ 'Bytes',
16
+ 'KB',
17
+ 'MB',
18
+ 'GB',
19
+ 'TB',
20
+ 'PB',
21
+ 'EB',
22
+ 'ZB',
23
+ 'YB'
24
+ ];
14
25
  /**
15
- * convert CamelCase string to PascalCase string
16
- * @param str the string to convert
17
- * @example
18
- * camelString2PascalString('camelCase') // 'CamelCase'
19
- * camelString2PascalString('camelCaseTest') // 'CamelCaseTest'
20
- */ const camelString2PascalString = (str)=>`${str[0].toUpperCase()}${str.slice(1)}`;
21
- /**
22
- * convert CamelCase string to SnakeCase string
23
- * @param str the string to convert
24
- * @example
25
- * camelString2SnakeString('camelCase') // 'camel_case'
26
- * camelString2SnakeString('camelCaseTest') // 'camel_case_test'
27
- */ const camelString2SnakeString = (str)=>str.replace(/[A-Z]/g, (letter)=>`_${letter.toLowerCase()}`);
28
- /**
29
- * convert PascalCase string to CamelCase string
30
- * @param str the string to convert
31
- * @example
32
- * pascalString2CamelString('PascalCase') // 'pascalCase'
33
- * pascalString2CamelString('PascalCaseTest') // 'pascalCaseTest'
34
- */ const pascalString2CamelString = (str)=>`${str[0].toLowerCase()}${str.slice(1)}`;
35
- /**
36
- * convert PascalCase string to SnakeCase string
37
- * @param str the string to convert
38
- * @example
39
- * pascalString2SnakeString('PascalCase') // 'pascal_case'
40
- * pascalString2SnakeString('PascalCaseTest') // 'pascal_case_test'
41
- */ const pascalString2SnakeString = (str)=>camelString2SnakeString(pascalString2CamelString(str));
42
- /**
43
- * convert SnakeCase string to CamelCase string
44
- * @param str the string to convert
45
- * @example
46
- * snakeString2CamelString('snake_case') // 'snakeCase'
47
- * snakeString2CamelString('snake_case_test') // 'snakeCaseTest'
48
- */ const snakeString2CamelString = (str)=>str.replace(/(_[a-z])/g, (group)=>group.toUpperCase().replace('_', ''));
49
- /**
50
- * convert SnakeCase string to PascalCase string
51
- * @param str the string to convert
52
- * @example
53
- * snakeString2PascalString('snake_case') // 'SnakeCase'
54
- * snakeString2PascalString('snake_case_test') // 'SnakeCaseTest'
55
- */ const snakeString2PascalString = (str)=>camelString2PascalString(snakeString2CamelString(str));
56
- const transformFun = {
57
- CamelToPascal: camelString2PascalString,
58
- CamelToSnake: camelString2SnakeString,
59
- PascalToCamel: pascalString2CamelString,
60
- PascalToSnake: pascalString2SnakeString,
61
- SnakeToCamel: snakeString2CamelString,
62
- SnakeToPascal: snakeString2PascalString
63
- };
64
- const transformObjectKey = (obj, transformFunName)=>{
65
- if (!obj || typeof obj !== 'object') return obj;
66
- if (Array.isArray(obj)) return obj.map((item)=>transformObjectKey(item, transformFunName));
67
- return Object.keys(obj).reduce((acc, key)=>({
68
- ...acc,
69
- [transformFun[transformFunName](key)]: transformObjectKey(obj[key], transformFunName)
70
- }), {});
71
- };
72
- /**
73
- * convert object key from CamelCase to PascalCase
74
- * @param obj the object to convert
75
- * @example
76
- * const obj = {
77
- * fooBar: 'fooBar',
78
- * fooBar2: 'fooBar2',
79
- * fooBar3: {
80
- * fooBar4: 'fooBar4',
81
- * fooBar5: 'fooBar5',
82
- * },
83
- * };
84
- * const result = camelCase2PascalCase(obj);
85
- * console.log(result); // { FooBar: 'fooBar', FooBar2: 'fooBar2', FooBar3: { FooBar4: 'fooBar4', FooBar5: 'fooBar5' } }
86
- */ const camelCase2PascalCase = (obj)=>transformObjectKey(obj, 'CamelToPascal');
87
- /**
88
- * convert object key from CamelCase to SnakeCase
89
- * @param obj the object to convert
90
- * @example
91
- * const obj = {
92
- * fooBar: 'fooBar',
93
- * fooBar2: 'fooBar2',
94
- * fooBar3: {
95
- * fooBar4: 'fooBar4',
96
- * fooBar5: 'fooBar5',
97
- * },
98
- * };
99
- * const result = camelCase2SnakeCase(obj);
100
- * console.log(result); // { foo_bar: 'fooBar', foo_bar2: 'fooBar2', foo_bar3: { foo_bar4: 'fooBar4', foo_bar5: 'fooBar5' } }
101
- */ const camelCase2SnakeCase = (obj)=>transformObjectKey(obj, 'CamelToSnake');
102
- /**
103
- * convert object key from PascalCase to CamelCase
104
- * @param obj the object to convert
105
- * @example
106
- * const obj = {
107
- * FooBar: 'fooBar',
108
- * FooBar2: 'fooBar2',
109
- * FooBar3: {
110
- * FooBar4: 'fooBar4',
111
- * FooBar5: 'fooBar5',
112
- * },
113
- * };
114
- * const result = pascalCase2CamelCase(obj);
115
- * console.log(result); // { fooBar: 'fooBar', fooBar2: 'fooBar2', fooBar3: { fooBar4: 'fooBar4', fooBar5: 'fooBar5' } }
116
- */ const pascalCase2CamelCase = (obj)=>transformObjectKey(obj, 'PascalToCamel');
117
- /**
118
- * convert object key from PascalCase to SnakeCase
119
- * @param obj the object to convert
120
- * @example
121
- * const obj = {
122
- * FooBar: 'fooBar',
123
- * FooBar2: 'fooBar2',
124
- * FooBar3: {
125
- * FooBar4: 'fooBar4',
126
- * FooBar5: 'fooBar5',
127
- * },
128
- * };
129
- * const result = pascalCase2SnakeCase(obj);
130
- * console.log(result); // { foo_bar: 'fooBar', foo_bar2: 'fooBar2', foo_bar3: { foo_bar4: 'fooBar4', foo_bar5: 'fooBar5' } }
131
- */ const pascalCase2SnakeCase = (obj)=>transformObjectKey(obj, 'PascalToSnake');
132
- /**
133
- * convert object key from SnakeCase to CamelCase
134
- * @param obj the object to convert
135
- * @example
136
- * const obj = {
137
- * foo_bar: 'fooBar',
138
- * foo_bar2: 'fooBar2',
139
- * foo_bar3: {
140
- * foo_bar4: 'fooBar4',
141
- * foo_bar5: 'fooBar5',
142
- * },
143
- * };
144
- * const result = snakeCase2CamelCase(obj);
145
- * console.log(result); // { fooBar: 'fooBar', fooBar2: 'fooBar2', fooBar3: { fooBar4: 'fooBar4', fooBar5: 'fooBar5' } }
146
- */ const snakeCase2CamelCase = (obj)=>transformObjectKey(obj, 'SnakeToCamel');
147
- /**
148
- * convert object key from SnakeCase to PascalCase
149
- * @param obj the object to convert
150
- * @example
151
- * const obj = {
152
- * foo_bar: 'fooBar',
153
- * foo_bar2: 'fooBar2',
154
- * foo_bar3: {
155
- * foo_bar4: 'fooBar4',
156
- * foo_bar5: 'fooBar5',
157
- * },
158
- * };
159
- * const result = snakeCase2PascalCase(obj);
160
- * console.log(result); // { FooBar: 'fooBar', FooBar2: 'fooBar2', FooBar3: { FooBar4: 'fooBar4', FooBar5: 'fooBar5' } }
161
- */ const snakeCase2PascalCase = (obj)=>transformObjectKey(obj, 'SnakeToPascal');
162
-
163
- /**
164
- * 檢查稅務編號是否符合正確的編號規則。
165
- *
166
- * @param {string} taxId - 要檢查的8位數稅務編號。
167
- * @returns {boolean} - 如果符合規則則返回 true,否則返回 false。
168
- *
169
- * ### 編號檢查規則:
170
- * 1. **基本格式檢查**:
171
- * - 編號必須為 8 位數字。
172
- * - 不得為「00000000」或「11111111」,這些編號被視為無效。
173
- *
174
- * 2. **驗證邏輯**:
175
- * - 使用一組驗證運算子:`[1, 2, 1, 2, 1, 2, 4, 1]`。
176
- * - 將稅務編號的每一位數字與對應的運算子相乘後,使用 `calculate` 函數計算各位數的和。
177
- * - 計算公式為:`(product % 10) + (product - (product % 10)) / 10`
178
- * - 將所有位數經計算後的結果加總為 `sum`。
179
- *
180
- * 3. **檢查規則**:
181
- * - 如果總和 `sum` 可以被 5 整除,則編號有效。
182
- * - 或者,若第七位數為 7,且 `(sum + 1) % 5 === 0`,則編號有效。
183
- *
184
- * @example
185
- *
186
- * validTaxId('22099131') // true
187
- * validTaxId('84149961') // true
188
- * validTaxId('00000000') // false
189
- * validTaxId('11111111') // false
190
- * validTaxId('22099132') // false
191
- */ const validTaxId = (taxId)=>{
192
- const invalidList = '00000000,11111111';
193
- if (/^\d{8}$/.test(taxId) === false || invalidList.indexOf(taxId) >= 0) {
194
- return false;
26
+ * 代表字節大小的類,提供各種格式化和轉換方法
27
+ */ class ByteSize {
28
+ /**
29
+ * 建立一個新的 ByteSize 實例
30
+ * @param bytes 位元組數值
31
+ */ constructor(bytes){
32
+ this.bytes = bytes;
195
33
  }
196
- const validateOperator = [
197
- 1,
198
- 2,
199
- 1,
200
- 2,
201
- 1,
202
- 2,
203
- 4,
204
- 1
205
- ];
206
- const calculate = (product)=>product % 10 + (product - product % 10) / 10;
207
- const sum = validateOperator.reduce((pre, cur, index)=>pre + calculate(Number(taxId[index]) * cur), 0);
208
- return sum % 5 === 0 || taxId[6] === '7' && (sum + 1) % 5 === 0;
209
- };
34
+ /**
35
+ * 取得原始位元組數值
36
+ */ get value() {
37
+ return this.bytes;
38
+ }
39
+ /**
40
+ * 將位元組轉換為指定單位的數值
41
+ *
42
+ * @param unit 目標單位 (例如 'KB', 'MB', 'GB')
43
+ * @returns 轉換後的數值
44
+ *
45
+ * @example
46
+ * ```ts
47
+ * const size = createByteSize(1024);
48
+ * size.to('KB'); // 1
49
+ * size.to('MB'); // 0.0009765625
50
+ * ```
51
+ */ to(unit) {
52
+ if (!FILE_SIZE_UNITS$1.includes(unit)) {
53
+ console.warn(`Invalid unit: ${unit}. Valid units are: ${FILE_SIZE_UNITS$1.join(', ')}`);
54
+ return this.bytes;
55
+ }
56
+ const k = 1024;
57
+ const i = FILE_SIZE_UNITS$1.indexOf(unit);
58
+ return this.bytes / k ** i;
59
+ }
60
+ /**
61
+ * 轉換為適當單位的可讀字符串
62
+ *
63
+ * @param unit 指定單位 (例如 'KB', 'MB', 'GB'),不指定則自動選擇最適合的單位
64
+ * @param decimals 小數點位數 (預設為 2)
65
+ * @returns 格式化後的字符串
66
+ *
67
+ * @example
68
+ * ```ts
69
+ * const size = createByteSize(1024);
70
+ * size.format(); // '1.00 KB'
71
+ * size.format('KB'); // '1.00 KB'
72
+ * size.format('MB', 3); // '0.001 MB'
73
+ * ```
74
+ */ format(unit, decimals = 2) {
75
+ if (this.bytes === 0) return `0 ${unit || 'Bytes'}`;
76
+ const k = 1024;
77
+ // 如果指定了有效單位,則使用;否則,計算最適合的單位
78
+ const i = unit && FILE_SIZE_UNITS$1.includes(unit) ? FILE_SIZE_UNITS$1.indexOf(unit) : Math.floor(Math.log(this.bytes) / Math.log(k));
79
+ return `${(this.bytes / k ** i).toFixed(decimals)} ${FILE_SIZE_UNITS$1[i]}`;
80
+ }
81
+ /**
82
+ * 比較兩個 ByteSize 實例
83
+ *
84
+ * @param other 要比較的另一個 ByteSize 實例
85
+ * @returns 比較結果:-1 表示小於,0 表示等於,1 表示大於
86
+ */ compareTo(other) {
87
+ if (this.bytes < other.value) return -1;
88
+ if (this.bytes > other.value) return 1;
89
+ return 0;
90
+ }
91
+ /**
92
+ * 轉換為字符串表示
93
+ * @returns 預設格式化的字符串
94
+ */ toString() {
95
+ return this.format();
96
+ }
97
+ }
210
98
  /**
211
- * 驗證日期格式是否正確
99
+ * 將位元組轉換為可讀字符串 (保留舊的 API 以確保向後兼容)
212
100
  *
213
- * @param dateString 日期字串
214
- * @param format 日期格式
215
- * @example
216
- *
217
- * validateDateString('20210201', 'YYYYMMDD') // true
218
- * validateDateString('2021-02-01', 'YYYY-MM-DD') // true
219
- * validateDateString('20210201', 'YYYY-MM-DD') // false
220
- * validateDateString('20210201', 'YYYYMM') // false
221
- */ const validateDateString = (dateString, format)=>{
222
- if (!dateString) return false;
223
- // 根據 format 生成正則表達式
224
- const regexPattern = format.replace(/YYYY/, '\\d{4}').replace(/MM/, '\\d{2}').replace(/DD/, '\\d{2}').replace(/HH/, '\\d{2}').replace(/mm/, '\\d{2}').replace(/ss/, '\\d{2}');
225
- const regex = new RegExp(`^${regexPattern}$`);
226
- // 先用正則驗證格式
227
- if (!regex.test(dateString)) return false;
228
- // 再用 dayjs 驗證是否為有效日期
229
- return dayjs__default.default(dateString, format, true).isValid();
230
- };
231
-
232
- /**
233
- * 取得去年今年以及明年期別陣列
101
+ * @param bytes 位元組數值
102
+ * @param unit 目標單位 (例如 'KB', 'MB', 'GB'),不指定則自動選擇最適合的單位
103
+ * @param decimals 小數點位數 (預設為 2)
104
+ * @returns 格式化後的字符串
234
105
  *
235
106
  * @example
236
- * // 假設 今年為 112 年
237
- * generatePeriodArray() // 11102 ~ 11312
238
- */ const generatePeriodArray = ()=>{
239
- const currentYear = new Date().getFullYear() - 1911;
240
- const months = [
241
- '02',
242
- '04',
243
- '06',
244
- '08',
245
- '10',
246
- '12'
247
- ];
248
- const years = [
249
- currentYear - 1,
250
- currentYear,
251
- currentYear + 1
252
- ];
253
- return years.flatMap((year)=>months.map((month)=>`${year}${month}`));
254
- };
107
+ * ```ts
108
+ * convertBytes(0) // '0 Bytes'
109
+ * convertBytes(1024, 'KB') // '1 KB'
110
+ * convertBytes(1024, 'KB', 2) // '1.00 KB'
111
+ * convertBytes(1024 * 1024, 'MB') // '1 MB'
112
+ * convertBytes(1024 * 1024, 'KB') // '1024 KB'
113
+ * ```
114
+ */ const convertBytes = (bytes, unit, decimals = 2)=>new ByteSize(bytes).format(unit, decimals);
115
+
255
116
  /**
256
- * 取得當前期別
257
- *
258
- * 報稅期限次期開始15日內
259
- *
260
- * 雙數月沒有特殊規則,期別皆為當月開頭
117
+ * 檢查兩個值是否相等(包含陣列等引用型別)
118
+ * - 支援基本型別的直接比較
119
+ * - 特別處理空陣列比較
120
+ * - 支援非空陣列的深度比較
261
121
  *
262
- * 單數月15號以前,期別為上個月否則為下個月開頭
122
+ * @param value1 - 第一個值
123
+ * @param value2 - 第二個值
124
+ * @returns 如果值相等則返回 true
263
125
  *
264
126
  * @example
265
- *
266
- * // 假設今天是 111-02-15
267
- * getCurrentPeriod() // 11102
268
- * // 假設今天是 111-02-16
269
- * getCurrentPeriod() // 11102
270
- * // 假設今天是 111-03-15
271
- * getCurrentPeriod() // 11102
272
- * // 假設今天是 111-03-16
273
- * getCurrentPeriod() // 11104
274
- */ const getCurrentPeriod = ()=>{
275
- const now = dayjs__default.default();
276
- const currentDate = now.format('DD');
277
- const currentYear = now.format('YYYY');
278
- const currentMonth = now.format('MM');
279
- let endMonth;
280
- if (Number(currentMonth) % 2 === 1) {
281
- endMonth = dayjs__default.default(`${currentYear}${currentMonth}`, 'YYYYMM').add(Number(currentDate) <= 15 ? -1 : 1, 'month').format('YYYYMM');
282
- } else {
283
- endMonth = `${currentYear}${currentMonth}`;
127
+ * // 基本型別比較
128
+ * isEqual(1, 1); // true
129
+ * isEqual('abc', 'abc'); // true
130
+ * isEqual(null, null); // true
131
+ *
132
+ * // 陣列比較
133
+ * isEqual([], []); // true
134
+ * isEqual([1, 2], [1, 2]); // true
135
+ * isEqual([1, 2], [1, 3]); // false
136
+ */ const isEqual = (value1, value2)=>{
137
+ // 處理基本型別
138
+ if (value1 === value2) {
139
+ return true;
284
140
  }
285
- return dayjs__default.default(endMonth, 'YYYYMM').subtract(1911, 'year').format('YYYYMM').substring(1);
286
- };
287
- /**
288
- * 民國年轉西元年
289
- * @param dateString 日期字串
290
- * @param format 日期格式
291
- * @example
292
- *
293
- * rocEraToAd('1100201') // 20210201
294
- * rocEraToAd('11002', 'YYYYMM') // 202102
295
- */ const rocEraToAd = (dateString, format = 'YYYYMMDD')=>{
296
- if (!validateDateString(`0${dateString}`, format)) return dateString;
297
- return dayjs__default.default(`0${dateString}`, format).add(1911, 'year').format(format);
298
- };
299
- /**
300
- * 西元年轉民國年
301
- * @param dateString 日期字串
302
- * @param format 日期格式
303
- * @example
304
- *
305
- * adToRocEra('20210201') // 1100201
306
- * adToRocEra('202102', 'YYYYMM') // 11002
307
- */ const adToRocEra = (dateString, format = 'YYYYMMDD')=>{
308
- if (!validateDateString(dateString, format)) return dateString;
309
- return dayjs__default.default(dateString, format).add(-1911, 'year').format(format).substring(1);
141
+ // 處理空陣列
142
+ if (Array.isArray(value1) && Array.isArray(value2) && value1.length === 0 && value2.length === 0) {
143
+ return true;
144
+ }
145
+ // 兩者都是非 null 的物件(包含陣列)
146
+ if (value1 !== null && value2 !== null && typeof value1 === 'object' && typeof value2 === 'object') {
147
+ // 處理非空陣列
148
+ if (Array.isArray(value1) && Array.isArray(value2)) {
149
+ if (value1.length !== value2.length) {
150
+ return false;
151
+ }
152
+ return value1.every((item, index)=>isEqual(item, value2[index]));
153
+ }
154
+ // 未來可以擴展這裡,增加其他物件型別的深度比較
155
+ }
156
+ return false;
310
157
  };
311
158
 
312
159
  /**
@@ -474,36 +321,6 @@ const transformObjectKey = (obj, transformFunName)=>{
474
321
  }
475
322
  };
476
323
 
477
- /**
478
- * A hook to manage a value.
479
- *
480
- * @example
481
- *
482
- * ```tsx
483
- * const MyComponent = ({ value }: { value?: number }) => {
484
- * const [currentValue, setCurrentValue] = useValue({ value });
485
- * };
486
- * ```
487
- */ const useValue = ({ value, defaultValue })=>{
488
- if (value === undefined && defaultValue === undefined) {
489
- throw new Error('Either `value` or `defaultValue` must be provided.');
490
- }
491
- const isControlled = value !== undefined;
492
- const [internalValue, setInternalValue] = React.useState(defaultValue);
493
- const setValue = React.useCallback((newValue)=>{
494
- if (!isControlled) {
495
- setInternalValue(newValue);
496
- }
497
- }, [
498
- isControlled
499
- ]);
500
- const currentValue = isControlled ? value : internalValue;
501
- return [
502
- currentValue,
503
- setValue
504
- ];
505
- };
506
-
507
324
  // const isProduction: boolean = process.env.NODE_ENV === 'production';
508
325
  const prefix = 'Invariant failed';
509
326
  // Throw an error if the condition fails
@@ -559,10 +376,12 @@ message) {
559
376
  * @param values 要排除的 value
560
377
  *
561
378
  * @example
562
- * const a = { a: undefined, b: null, c: 3, d: 4 };
563
- * const b = omitByValue(a, undefined, null); // { c: 3, d: 4 }
379
+ * const a = { a: undefined, b: null, c: 3, d: 4, e: [] };
380
+ * const b = omitByValue(a, undefined, null, []); // { c: 3, d: 4 }
564
381
  */ const omitByValue = (object, ...values)=>Object.entries(object).reduce((acc, [key, value])=>{
565
- if (values.includes(value)) {
382
+ // 使用深度比較檢查值是否應該被排除
383
+ const shouldOmit = values.some((excludeValue)=>isEqual(value, excludeValue));
384
+ if (shouldOmit) {
566
385
  return acc;
567
386
  }
568
387
  return {
@@ -592,10 +411,12 @@ message) {
592
411
  *
593
412
  * @example
594
413
  *
595
- * const a = { a: 1, b: 2, c: 3, d: 4 };
596
- * const b = pickByValue(a, 1, 2); // { a: 1, b: 2 }
414
+ * const a = { a: 1, b: 2, c: 3, d: 4, e: [] };
415
+ * const b = pickByValue(a, 1, 2, []); // { a: 1, b: 2, e: [] }
597
416
  */ const pickByValue = (object, ...values)=>Object.entries(object).reduce((acc, [key, value])=>{
598
- if (values.includes(value)) {
417
+ // 使用深度比較檢查值是否應該被選擇
418
+ const shouldPick = values.some((pickValue)=>isEqual(value, pickValue));
419
+ if (shouldPick) {
599
420
  return {
600
421
  ...acc,
601
422
  [key]: value
@@ -663,44 +484,320 @@ const isObject = (value)=>value !== null && typeof value === 'object';
663
484
  };
664
485
  };
665
486
  /**
666
- * throttle function
487
+ * throttle function
488
+ *
489
+ * @param {Function} fn function to be executed
490
+ * @param {number} delay time to wait before executing the function
491
+ *
492
+ * @example
493
+ * const throttledFunction = throttle((a: number, b: number) => a + b, 1000);
494
+ * throttledFunction(1, 2); // 3
495
+ * throttledFunction(3, 4); // undefined
496
+ * setTimeout(() => {
497
+ * throttledFunction(5, 6); // 11
498
+ * }, 2000);
499
+ */ const throttle = (fn, delay)=>{
500
+ let wait = false;
501
+ return (...args)=>{
502
+ if (wait) return undefined;
503
+ const val = fn(...args);
504
+ wait = true;
505
+ setTimeout(()=>{
506
+ wait = false;
507
+ }, delay);
508
+ return val;
509
+ };
510
+ };
511
+
512
+ /**
513
+ * Wait for a given amount of time
514
+ * @param ms time to wait in milliseconds
515
+ */ const wait = (ms)=>{
516
+ };
517
+
518
+ /**
519
+ * 將單層物件轉換為 URLSearchParams 物件
520
+ * - 會自動排除 null、undefined、空字串和空陣列的值
521
+ * - 陣列會以逗號連接為字串
522
+ *
523
+ * @param obj - 要轉換的物件,只支援單層物件,其中值可以是 string、number、boolean、null、undefined 或字串陣列
524
+ * @returns URLSearchParams 實例
525
+ *
526
+ * @example
527
+ * const params = { a: '1', b: 123, c: false, d: ['1','2'], e: null, f: undefined, g: '', h: [] };
528
+ * objectToSearchParams(params).toString(); // 'a=1&b=123&c=false&d=1%2C2'
529
+ */ const objectToSearchParams = (obj)=>{
530
+ const searchParams = new URLSearchParams();
531
+ if (!obj || typeof obj !== 'object' || Array.isArray(obj)) {
532
+ return searchParams;
533
+ }
534
+ Object.entries(omitByValue(obj, undefined, null, '', [])).forEach(([key, value])=>{
535
+ // 如果是陣列,則以逗號連接
536
+ const paramValue = Array.isArray(value) ? value.join(',') : String(value);
537
+ searchParams.append(key, paramValue);
538
+ });
539
+ return searchParams;
540
+ };
541
+ /**
542
+ * 將字串值轉換為指定的型別
543
+ *
544
+ * @param value - 要轉換的字串值
545
+ * @param targetType - 目標型別
546
+ * @returns 轉換後的值
547
+ */ const convertValueByType = (value, targetType)=>{
548
+ switch(targetType){
549
+ case 'number':
550
+ return value ? Number(value) : 0;
551
+ case 'boolean':
552
+ return value === 'true' || value === '1';
553
+ case 'array':
554
+ return value ? value.split(',') : [];
555
+ case 'string':
556
+ default:
557
+ // 預設為字串,不需要轉換
558
+ return value;
559
+ }
560
+ };
561
+ /**
562
+ * 將 URLSearchParams 或字串轉換為物件
563
+ *
564
+ * @param searchParams - 要轉換的搜尋參數字串或 URLSearchParams 實例
565
+ * @param typeMap - 可選的型別轉換映射表,用於指定每個參數的目標型別
566
+ * @returns
567
+ *
568
+ * @example
569
+ * const queryString = 'a=1&b=123&c=true&d=1,2,3&e=false';
570
+ * const result = searchParamsToObject(queryString);
571
+ * // result: { a: '1', b: '123', c: 'true', d: '1,2,3', e: 'false' }
572
+ * const result = searchParamsToObject(queryString, {
573
+ * a: 'string',
574
+ * b: 'number',
575
+ * c: 'boolean',
576
+ * d: 'array',
577
+ * e: 'boolean',
578
+ * });
579
+ * // result: { a: '1', b: 123, c: true, d: ['1', '2', '3'], e: false }
580
+ */ const searchParamsToObject = (searchParams, typeMap = {})=>{
581
+ const searchParamsInstance = typeof searchParams === 'string' ? new URLSearchParams(searchParams) : searchParams;
582
+ const result = {};
583
+ // 從 URLSearchParams 取得所有參數
584
+ searchParamsInstance.forEach((value, key)=>{
585
+ if (!key) {
586
+ return;
587
+ }
588
+ const targetType = typeMap[key];
589
+ result[key] = convertValueByType(value, targetType);
590
+ });
591
+ return result;
592
+ };
593
+
594
+ /**
595
+ * convert CamelCase string to PascalCase string
596
+ * @param str the string to convert
597
+ * @example
598
+ * camelString2PascalString('camelCase') // 'CamelCase'
599
+ * camelString2PascalString('camelCaseTest') // 'CamelCaseTest'
600
+ */ const camelString2PascalString = (str)=>`${str[0].toUpperCase()}${str.slice(1)}`;
601
+ /**
602
+ * convert CamelCase string to SnakeCase string
603
+ * @param str the string to convert
604
+ * @example
605
+ * camelString2SnakeString('camelCase') // 'camel_case'
606
+ * camelString2SnakeString('camelCaseTest') // 'camel_case_test'
607
+ */ const camelString2SnakeString = (str)=>str.replace(/[A-Z]/g, (letter)=>`_${letter.toLowerCase()}`);
608
+ /**
609
+ * convert PascalCase string to CamelCase string
610
+ * @param str the string to convert
611
+ * @example
612
+ * pascalString2CamelString('PascalCase') // 'pascalCase'
613
+ * pascalString2CamelString('PascalCaseTest') // 'pascalCaseTest'
614
+ */ const pascalString2CamelString = (str)=>`${str[0].toLowerCase()}${str.slice(1)}`;
615
+ /**
616
+ * convert PascalCase string to SnakeCase string
617
+ * @param str the string to convert
618
+ * @example
619
+ * pascalString2SnakeString('PascalCase') // 'pascal_case'
620
+ * pascalString2SnakeString('PascalCaseTest') // 'pascal_case_test'
621
+ */ const pascalString2SnakeString = (str)=>camelString2SnakeString(pascalString2CamelString(str));
622
+ /**
623
+ * convert SnakeCase string to CamelCase string
624
+ * @param str the string to convert
625
+ * @example
626
+ * snakeString2CamelString('snake_case') // 'snakeCase'
627
+ * snakeString2CamelString('snake_case_test') // 'snakeCaseTest'
628
+ */ const snakeString2CamelString = (str)=>str.replace(/(_[a-z])/g, (group)=>group.toUpperCase().replace('_', ''));
629
+ /**
630
+ * convert SnakeCase string to PascalCase string
631
+ * @param str the string to convert
632
+ * @example
633
+ * snakeString2PascalString('snake_case') // 'SnakeCase'
634
+ * snakeString2PascalString('snake_case_test') // 'SnakeCaseTest'
635
+ */ const snakeString2PascalString = (str)=>camelString2PascalString(snakeString2CamelString(str));
636
+ const transformFun = {
637
+ CamelToPascal: camelString2PascalString,
638
+ CamelToSnake: camelString2SnakeString,
639
+ PascalToCamel: pascalString2CamelString,
640
+ PascalToSnake: pascalString2SnakeString,
641
+ SnakeToCamel: snakeString2CamelString,
642
+ SnakeToPascal: snakeString2PascalString
643
+ };
644
+ const transformObjectKey = (obj, transformFunName)=>{
645
+ if (!obj || typeof obj !== 'object') return obj;
646
+ if (Array.isArray(obj)) return obj.map((item)=>transformObjectKey(item, transformFunName));
647
+ return Object.keys(obj).reduce((acc, key)=>({
648
+ ...acc,
649
+ [transformFun[transformFunName](key)]: transformObjectKey(obj[key], transformFunName)
650
+ }), {});
651
+ };
652
+ /**
653
+ * convert object key from CamelCase to PascalCase
654
+ * @param obj the object to convert
655
+ * @example
656
+ * const obj = {
657
+ * fooBar: 'fooBar',
658
+ * fooBar2: 'fooBar2',
659
+ * fooBar3: {
660
+ * fooBar4: 'fooBar4',
661
+ * fooBar5: 'fooBar5',
662
+ * },
663
+ * };
664
+ * const result = camelCase2PascalCase(obj);
665
+ * console.log(result); // { FooBar: 'fooBar', FooBar2: 'fooBar2', FooBar3: { FooBar4: 'fooBar4', FooBar5: 'fooBar5' } }
666
+ */ const camelCase2PascalCase = (obj)=>transformObjectKey(obj, 'CamelToPascal');
667
+ /**
668
+ * convert object key from CamelCase to SnakeCase
669
+ * @param obj the object to convert
670
+ * @example
671
+ * const obj = {
672
+ * fooBar: 'fooBar',
673
+ * fooBar2: 'fooBar2',
674
+ * fooBar3: {
675
+ * fooBar4: 'fooBar4',
676
+ * fooBar5: 'fooBar5',
677
+ * },
678
+ * };
679
+ * const result = camelCase2SnakeCase(obj);
680
+ * console.log(result); // { foo_bar: 'fooBar', foo_bar2: 'fooBar2', foo_bar3: { foo_bar4: 'fooBar4', foo_bar5: 'fooBar5' } }
681
+ */ const camelCase2SnakeCase = (obj)=>transformObjectKey(obj, 'CamelToSnake');
682
+ /**
683
+ * convert object key from PascalCase to CamelCase
684
+ * @param obj the object to convert
685
+ * @example
686
+ * const obj = {
687
+ * FooBar: 'fooBar',
688
+ * FooBar2: 'fooBar2',
689
+ * FooBar3: {
690
+ * FooBar4: 'fooBar4',
691
+ * FooBar5: 'fooBar5',
692
+ * },
693
+ * };
694
+ * const result = pascalCase2CamelCase(obj);
695
+ * console.log(result); // { fooBar: 'fooBar', fooBar2: 'fooBar2', fooBar3: { fooBar4: 'fooBar4', fooBar5: 'fooBar5' } }
696
+ */ const pascalCase2CamelCase = (obj)=>transformObjectKey(obj, 'PascalToCamel');
697
+ /**
698
+ * convert object key from PascalCase to SnakeCase
699
+ * @param obj the object to convert
700
+ * @example
701
+ * const obj = {
702
+ * FooBar: 'fooBar',
703
+ * FooBar2: 'fooBar2',
704
+ * FooBar3: {
705
+ * FooBar4: 'fooBar4',
706
+ * FooBar5: 'fooBar5',
707
+ * },
708
+ * };
709
+ * const result = pascalCase2SnakeCase(obj);
710
+ * console.log(result); // { foo_bar: 'fooBar', foo_bar2: 'fooBar2', foo_bar3: { foo_bar4: 'fooBar4', foo_bar5: 'fooBar5' } }
711
+ */ const pascalCase2SnakeCase = (obj)=>transformObjectKey(obj, 'PascalToSnake');
712
+ /**
713
+ * convert object key from SnakeCase to CamelCase
714
+ * @param obj the object to convert
715
+ * @example
716
+ * const obj = {
717
+ * foo_bar: 'fooBar',
718
+ * foo_bar2: 'fooBar2',
719
+ * foo_bar3: {
720
+ * foo_bar4: 'fooBar4',
721
+ * foo_bar5: 'fooBar5',
722
+ * },
723
+ * };
724
+ * const result = snakeCase2CamelCase(obj);
725
+ * console.log(result); // { fooBar: 'fooBar', fooBar2: 'fooBar2', fooBar3: { fooBar4: 'fooBar4', fooBar5: 'fooBar5' } }
726
+ */ const snakeCase2CamelCase = (obj)=>transformObjectKey(obj, 'SnakeToCamel');
727
+ /**
728
+ * convert object key from SnakeCase to PascalCase
729
+ * @param obj the object to convert
730
+ * @example
731
+ * const obj = {
732
+ * foo_bar: 'fooBar',
733
+ * foo_bar2: 'fooBar2',
734
+ * foo_bar3: {
735
+ * foo_bar4: 'fooBar4',
736
+ * foo_bar5: 'fooBar5',
737
+ * },
738
+ * };
739
+ * const result = snakeCase2PascalCase(obj);
740
+ * console.log(result); // { FooBar: 'fooBar', FooBar2: 'fooBar2', FooBar3: { FooBar4: 'fooBar4', FooBar5: 'fooBar5' } }
741
+ */ const snakeCase2PascalCase = (obj)=>transformObjectKey(obj, 'SnakeToPascal');
742
+
743
+ /**
744
+ * 將數字轉換成金額千分位格式
745
+ *
746
+ * @param num - 數字
747
+ *
748
+ * @example
749
+ *
750
+ * formatAmount(1234567) // '1,234,567'
751
+ */ const formatAmount = (num)=>{
752
+ if (typeof num !== 'number') return '';
753
+ return num.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g, '$1,');
754
+ };
755
+ /**
756
+ * 將字串的第 n - m 個字轉換成星號
757
+ *
758
+ * @param str - 字串
759
+ * @param n - 起始位置
760
+ * @param m - 結束位置
761
+ *
762
+ * @example
763
+ *
764
+ * formatString('123456', 1, 4) // '1****6'
765
+ */ const formatStarMask = (str, n, m)=>str.slice(0, n) + '*'.repeat(m - n + 1) + str.slice(m + 1);
766
+ const FILE_SIZE_UNITS = [
767
+ 'Bytes',
768
+ 'KB',
769
+ 'MB',
770
+ 'GB',
771
+ 'TB',
772
+ 'PB',
773
+ 'EB',
774
+ 'ZB',
775
+ 'YB'
776
+ ];
777
+ /**
778
+ * format file size to human readable string
667
779
  *
668
- * @param {Function} fn function to be executed
669
- * @param {number} delay time to wait before executing the function
780
+ * it will convert bytes to KB, MB, GB, TB, PB, EB, ZB, YB
781
+ *
782
+ * @param bytes file size in bytes
783
+ * @param decimals number of decimal places (default is 2)
670
784
  *
671
785
  * @example
672
- * const throttledFunction = throttle((a: number, b: number) => a + b, 1000);
673
- * throttledFunction(1, 2); // 3
674
- * throttledFunction(3, 4); // undefined
675
- * setTimeout(() => {
676
- * throttledFunction(5, 6); // 11
677
- * }, 2000);
678
- */ const throttle = (fn, delay)=>{
679
- let wait = false;
680
- return (...args)=>{
681
- if (wait) return undefined;
682
- const val = fn(...args);
683
- wait = true;
684
- setTimeout(()=>{
685
- wait = false;
686
- }, delay);
687
- return val;
688
- };
786
+ *
787
+ * ```js
788
+ * formatBytes(0) // 0 Bytes
789
+ * formatBytes(1024) // 1 KB
790
+ * formatBytes(1024, 2) // 1.00 KB
791
+ * formatBytes(1024 * 1024) // 1 MB
792
+ * ```
793
+ * @deprecated use `convertBytes` instead
794
+ */ const formatBytes = (bytes, decimals = 0)=>{
795
+ if (bytes === 0) return '0 Bytes';
796
+ const k = 1024;
797
+ const i = Math.floor(Math.log(bytes) / Math.log(k));
798
+ return `${(bytes / k ** i).toFixed(decimals)} ${FILE_SIZE_UNITS[i]}`;
689
799
  };
690
800
 
691
- function mergeRefs(refs) {
692
- return (value)=>{
693
- refs.forEach((ref)=>{
694
- if (typeof ref === 'function') {
695
- ref(value);
696
- } else if (ref != null) {
697
- // eslint-disable-next-line no-param-reassign
698
- ref.current = value;
699
- }
700
- });
701
- };
702
- }
703
-
704
801
  /**
705
802
  * 中文
706
803
  *
@@ -869,79 +966,211 @@ function mergeRefs(refs) {
869
966
  */ const isTWPhone = ()=>/^(((0[2-9]-?\d{6,8})(#\d{1,5})?)|((0[2-9][0-9]-?\d{6,7})(#\d{1,5})?))$/;
870
967
 
871
968
  /**
872
- * 將數字轉換成金額千分位格式
969
+ * 檢查稅務編號是否符合正確的編號規則。
873
970
  *
874
- * @param num - 數字
971
+ * @param {string} taxId - 要檢查的8位數稅務編號。
972
+ * @returns {boolean} - 如果符合規則則返回 true,否則返回 false。
875
973
  *
876
- * @example
974
+ * ### 編號檢查規則:
975
+ * 1. **基本格式檢查**:
976
+ * - 編號必須為 8 位數字。
977
+ * - 不得為「00000000」或「11111111」,這些編號被視為無效。
877
978
  *
878
- * formatAmount(1234567) // '1,234,567'
879
- */ const formatAmount = (num)=>{
880
- if (typeof num !== 'number') return '';
881
- return num.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g, '$1,');
882
- };
883
- /**
884
- * 將字串的第 n - m 個字轉換成星號
979
+ * 2. **驗證邏輯**:
980
+ * - 使用一組驗證運算子:`[1, 2, 1, 2, 1, 2, 4, 1]`。
981
+ * - 將稅務編號的每一位數字與對應的運算子相乘後,使用 `calculate` 函數計算各位數的和。
982
+ * - 計算公式為:`(product % 10) + (product - (product % 10)) / 10`
983
+ * - 將所有位數經計算後的結果加總為 `sum`。
885
984
  *
886
- * @param str - 字串
887
- * @param n - 起始位置
888
- * @param m - 結束位置
985
+ * 3. **檢查規則**:
986
+ * - 如果總和 `sum` 可以被 5 整除,則編號有效。
987
+ * - 或者,若第七位數為 7,且 `(sum + 1) % 5 === 0`,則編號有效。
889
988
  *
890
989
  * @example
891
990
  *
892
- * formatString('123456', 1, 4) // '1****6'
893
- */ const formatStarMask = (str, n, m)=>str.slice(0, n) + '*'.repeat(m - n + 1) + str.slice(m + 1);
991
+ * validTaxId('22099131') // true
992
+ * validTaxId('84149961') // true
993
+ * validTaxId('00000000') // false
994
+ * validTaxId('11111111') // false
995
+ * validTaxId('22099132') // false
996
+ */ const validTaxId = (taxId)=>{
997
+ const invalidList = '00000000,11111111';
998
+ if (/^\d{8}$/.test(taxId) === false || invalidList.indexOf(taxId) >= 0) {
999
+ return false;
1000
+ }
1001
+ const validateOperator = [
1002
+ 1,
1003
+ 2,
1004
+ 1,
1005
+ 2,
1006
+ 1,
1007
+ 2,
1008
+ 4,
1009
+ 1
1010
+ ];
1011
+ const calculate = (product)=>product % 10 + (product - product % 10) / 10;
1012
+ const sum = validateOperator.reduce((pre, cur, index)=>pre + calculate(Number(taxId[index]) * cur), 0);
1013
+ return sum % 5 === 0 || taxId[6] === '7' && (sum + 1) % 5 === 0;
1014
+ };
894
1015
  /**
895
- * format file size to human readable string
1016
+ * 驗證日期格式是否正確
896
1017
  *
897
- * it will convert bytes to KB, MB, GB, TB, PB, EB, ZB, YB
1018
+ * @param dateString 日期字串
1019
+ * @param format 日期格式
1020
+ * @example
898
1021
  *
899
- * @param bytes file size in bytes
900
- * @param decimals number of decimal places (default is 2)
1022
+ * validateDateString('20210201', 'YYYYMMDD') // true
1023
+ * validateDateString('2021-02-01', 'YYYY-MM-DD') // true
1024
+ * validateDateString('20210201', 'YYYY-MM-DD') // false
1025
+ * validateDateString('20210201', 'YYYYMM') // false
1026
+ */ const validateDateString = (dateString, format)=>{
1027
+ if (!dateString) return false;
1028
+ // 根據 format 生成正則表達式
1029
+ const regexPattern = format.replace(/YYYY/, '\\d{4}').replace(/MM/, '\\d{2}').replace(/DD/, '\\d{2}').replace(/HH/, '\\d{2}').replace(/mm/, '\\d{2}').replace(/ss/, '\\d{2}');
1030
+ const regex = new RegExp(`^${regexPattern}$`);
1031
+ // 先用正則驗證格式
1032
+ if (!regex.test(dateString)) return false;
1033
+ // 再用 dayjs 驗證是否為有效日期
1034
+ return dayjs__default.default(dateString, format, true).isValid();
1035
+ };
1036
+
1037
+ /**
1038
+ * A hook to manage a value.
901
1039
  *
902
1040
  * @example
903
1041
  *
904
- * ```js
905
- * formatBytes(0) // 0 Bytes
906
- * formatBytes(1024) // 1 KB
907
- * formatBytes(1024, 2) // 1.00 KB
908
- * formatBytes(1024 * 1024) // 1 MB
1042
+ * ```tsx
1043
+ * const MyComponent = ({ value }: { value?: number }) => {
1044
+ * const [currentValue, setCurrentValue] = useValue({ value });
1045
+ * };
909
1046
  * ```
910
- */ const formatBytes = (bytes, decimals = 0)=>{
911
- if (bytes === 0) return '0 Bytes';
912
- const k = 1024;
913
- const sizes = [
914
- 'Bytes',
915
- 'KB',
916
- 'MB',
917
- 'GB',
918
- 'TB',
919
- 'PB',
920
- 'EB',
921
- 'ZB',
922
- 'YB'
1047
+ */ const useValue = ({ value, defaultValue })=>{
1048
+ if (value === undefined && defaultValue === undefined) {
1049
+ throw new Error('Either `value` or `defaultValue` must be provided.');
1050
+ }
1051
+ const isControlled = value !== undefined;
1052
+ const [internalValue, setInternalValue] = React.useState(defaultValue);
1053
+ const setValue = React.useCallback((newValue)=>{
1054
+ if (!isControlled) {
1055
+ setInternalValue(newValue);
1056
+ }
1057
+ }, [
1058
+ isControlled
1059
+ ]);
1060
+ const currentValue = isControlled ? value : internalValue;
1061
+ return [
1062
+ currentValue,
1063
+ setValue
923
1064
  ];
924
- const i = Math.floor(Math.log(bytes) / Math.log(k));
925
- return `${(bytes / k ** i).toFixed(decimals)} ${sizes[i]}`;
926
1065
  };
927
1066
 
1067
+ function mergeRefs(refs) {
1068
+ return (value)=>{
1069
+ refs.forEach((ref)=>{
1070
+ if (typeof ref === 'function') {
1071
+ ref(value);
1072
+ } else if (ref != null) {
1073
+ // eslint-disable-next-line no-param-reassign
1074
+ ref.current = value;
1075
+ }
1076
+ });
1077
+ };
1078
+ }
1079
+
928
1080
  /**
929
- * Wait for a given amount of time
930
- * @param ms time to wait in milliseconds
931
- */ const wait = (ms)=>{
1081
+ * 民國年轉西元年
1082
+ * @param dateString 日期字串
1083
+ * @param format 日期格式
1084
+ * @example
1085
+ *
1086
+ * rocEraToAd('1100201') // 20210201
1087
+ * rocEraToAd('11002', 'YYYYMM') // 202102
1088
+ */ const rocEraToAd = (dateString, format = 'YYYYMMDD')=>{
1089
+ if (!validateDateString(`0${dateString}`, format)) return dateString;
1090
+ return dayjs__default.default(`0${dateString}`, format).add(1911, 'year').format(format);
1091
+ };
1092
+ /**
1093
+ * 西元年轉民國年
1094
+ * @param dateString 日期字串
1095
+ * @param format 日期格式
1096
+ * @example
1097
+ *
1098
+ * adToRocEra('20210201') // 1100201
1099
+ * adToRocEra('202102', 'YYYYMM') // 11002
1100
+ */ const adToRocEra = (dateString, format = 'YYYYMMDD')=>{
1101
+ if (!validateDateString(dateString, format)) return dateString;
1102
+ return dayjs__default.default(dateString, format).add(-1911, 'year').format(format).substring(1);
1103
+ };
1104
+
1105
+ /**
1106
+ * 取得去年今年以及明年期別陣列
1107
+ *
1108
+ * @example
1109
+ * // 假設 今年為 112 年
1110
+ * generatePeriodArray() // 11102 ~ 11312
1111
+ */ const generatePeriodArray = ()=>{
1112
+ const currentYear = new Date().getFullYear() - 1911;
1113
+ const months = [
1114
+ '02',
1115
+ '04',
1116
+ '06',
1117
+ '08',
1118
+ '10',
1119
+ '12'
1120
+ ];
1121
+ const years = [
1122
+ currentYear - 1,
1123
+ currentYear,
1124
+ currentYear + 1
1125
+ ];
1126
+ return years.flatMap((year)=>months.map((month)=>`${year}${month}`));
1127
+ };
1128
+ /**
1129
+ * 取得當前期別
1130
+ *
1131
+ * 報稅期限次期開始15日內
1132
+ *
1133
+ * 雙數月沒有特殊規則,期別皆為當月開頭
1134
+ *
1135
+ * 單數月15號以前,期別為上個月否則為下個月開頭
1136
+ *
1137
+ * @example
1138
+ *
1139
+ * // 假設今天是 111-02-15
1140
+ * getCurrentPeriod() // 11102
1141
+ * // 假設今天是 111-02-16
1142
+ * getCurrentPeriod() // 11102
1143
+ * // 假設今天是 111-03-15
1144
+ * getCurrentPeriod() // 11102
1145
+ * // 假設今天是 111-03-16
1146
+ * getCurrentPeriod() // 11104
1147
+ */ const getCurrentPeriod = ()=>{
1148
+ const now = dayjs__default.default();
1149
+ const currentDate = now.format('DD');
1150
+ const currentYear = now.format('YYYY');
1151
+ const currentMonth = now.format('MM');
1152
+ let endMonth;
1153
+ if (Number(currentMonth) % 2 === 1) {
1154
+ endMonth = dayjs__default.default(`${currentYear}${currentMonth}`, 'YYYYMM').add(Number(currentDate) <= 15 ? -1 : 1, 'month').format('YYYYMM');
1155
+ } else {
1156
+ endMonth = `${currentYear}${currentMonth}`;
1157
+ }
1158
+ return dayjs__default.default(endMonth, 'YYYYMM').subtract(1911, 'year').format('YYYYMM').substring(1);
932
1159
  };
933
1160
 
934
- exports.useCountdown = useCountdownClient.useCountdown;
935
1161
  exports.QueryProvider = queryStoreClient.QueryProvider;
936
1162
  exports.useQueryContext = queryStoreClient.useQueryContext;
1163
+ exports.useCountdown = useCountdownClient.useCountdown;
937
1164
  exports.downloadFile = downloadClient.downloadFile;
938
1165
  exports.getLocalStorage = webStorageClient.getLocalStorage;
939
1166
  exports.setLocalStorage = webStorageClient.setLocalStorage;
1167
+ exports.ByteSize = ByteSize;
940
1168
  exports.adToRocEra = adToRocEra;
941
1169
  exports.camelCase2PascalCase = camelCase2PascalCase;
942
1170
  exports.camelCase2SnakeCase = camelCase2SnakeCase;
943
1171
  exports.camelString2PascalString = camelString2PascalString;
944
1172
  exports.camelString2SnakeString = camelString2SnakeString;
1173
+ exports.convertBytes = convertBytes;
945
1174
  exports.createEnumLikeObject = createEnumLikeObject;
946
1175
  exports.debounce = debounce;
947
1176
  exports.deepMerge = deepMerge;
@@ -959,6 +1188,7 @@ exports.isDateString = isDateString;
959
1188
  exports.isDateTimeString = isDateTimeString;
960
1189
  exports.isEmail = isEmail;
961
1190
  exports.isEnglish = isEnglish;
1191
+ exports.isEqual = isEqual;
962
1192
  exports.isNonZeroStart = isNonZeroStart;
963
1193
  exports.isNumber = isNumber;
964
1194
  exports.isNumberAtLeastN = isNumberAtLeastN;
@@ -970,6 +1200,7 @@ exports.isTWPhone = isTWPhone;
970
1200
  exports.isTimeString = isTimeString;
971
1201
  exports.isValidPassword = isValidPassword;
972
1202
  exports.mergeRefs = mergeRefs;
1203
+ exports.objectToSearchParams = objectToSearchParams;
973
1204
  exports.omit = omit;
974
1205
  exports.omitByValue = omitByValue;
975
1206
  exports.pascalCase2CamelCase = pascalCase2CamelCase;
@@ -979,6 +1210,7 @@ exports.pascalString2SnakeString = pascalString2SnakeString;
979
1210
  exports.pick = pick;
980
1211
  exports.pickByValue = pickByValue;
981
1212
  exports.rocEraToAd = rocEraToAd;
1213
+ exports.searchParamsToObject = searchParamsToObject;
982
1214
  exports.snakeCase2CamelCase = snakeCase2CamelCase;
983
1215
  exports.snakeCase2PascalCase = snakeCase2PascalCase;
984
1216
  exports.snakeString2CamelString = snakeString2CamelString;