amis-formula 1.2.4 → 1.2.8
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/README.md +1 -1
- package/dist/doc.js +302 -51
- package/dist/doc.md +216 -56
- package/dist/evalutor.d.ts +211 -50
- package/dist/index.js +1468 -52
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/doc.js
CHANGED
|
@@ -98,9 +98,9 @@ export default [
|
|
|
98
98
|
],
|
|
99
99
|
returns: {
|
|
100
100
|
type: "any",
|
|
101
|
-
description: "
|
|
101
|
+
description: "第一个满足条件的结果,没有命中的返回 false。"
|
|
102
102
|
},
|
|
103
|
-
namespace: ""
|
|
103
|
+
namespace: "逻辑函数"
|
|
104
104
|
},
|
|
105
105
|
{
|
|
106
106
|
name: "ABS",
|
|
@@ -115,7 +115,7 @@ export default [
|
|
|
115
115
|
],
|
|
116
116
|
returns: {
|
|
117
117
|
type: "number",
|
|
118
|
-
description: "
|
|
118
|
+
description: "传入数值的绝对值"
|
|
119
119
|
},
|
|
120
120
|
namespace: "数学函数"
|
|
121
121
|
},
|
|
@@ -132,7 +132,7 @@ export default [
|
|
|
132
132
|
],
|
|
133
133
|
returns: {
|
|
134
134
|
type: "number",
|
|
135
|
-
description: "
|
|
135
|
+
description: "所有传入值中最大的那个"
|
|
136
136
|
},
|
|
137
137
|
namespace: "数学函数"
|
|
138
138
|
},
|
|
@@ -149,7 +149,7 @@ export default [
|
|
|
149
149
|
],
|
|
150
150
|
returns: {
|
|
151
151
|
type: "number",
|
|
152
|
-
description: "
|
|
152
|
+
description: "所有传入值中最小的那个"
|
|
153
153
|
},
|
|
154
154
|
namespace: "数学函数"
|
|
155
155
|
},
|
|
@@ -166,7 +166,7 @@ export default [
|
|
|
166
166
|
],
|
|
167
167
|
returns: {
|
|
168
168
|
type: "number",
|
|
169
|
-
description: "
|
|
169
|
+
description: "所有传入数值的总和"
|
|
170
170
|
},
|
|
171
171
|
namespace: "数学函数"
|
|
172
172
|
},
|
|
@@ -183,7 +183,7 @@ export default [
|
|
|
183
183
|
],
|
|
184
184
|
returns: {
|
|
185
185
|
type: "number",
|
|
186
|
-
description: "
|
|
186
|
+
description: "数值对应的整形"
|
|
187
187
|
},
|
|
188
188
|
namespace: "数学函数"
|
|
189
189
|
},
|
|
@@ -205,7 +205,7 @@ export default [
|
|
|
205
205
|
],
|
|
206
206
|
returns: {
|
|
207
207
|
type: "number",
|
|
208
|
-
description: "
|
|
208
|
+
description: "两数相除的余数"
|
|
209
209
|
},
|
|
210
210
|
namespace: "数学函数"
|
|
211
211
|
},
|
|
@@ -216,7 +216,7 @@ export default [
|
|
|
216
216
|
params: [],
|
|
217
217
|
returns: {
|
|
218
218
|
type: "number",
|
|
219
|
-
description: "
|
|
219
|
+
description: "圆周率数值"
|
|
220
220
|
},
|
|
221
221
|
namespace: "数学函数"
|
|
222
222
|
},
|
|
@@ -238,7 +238,7 @@ export default [
|
|
|
238
238
|
],
|
|
239
239
|
returns: {
|
|
240
240
|
type: "number",
|
|
241
|
-
description: "
|
|
241
|
+
description: "传入数值四舍五入后的结果"
|
|
242
242
|
},
|
|
243
243
|
namespace: "数学函数"
|
|
244
244
|
},
|
|
@@ -260,7 +260,7 @@ export default [
|
|
|
260
260
|
],
|
|
261
261
|
returns: {
|
|
262
262
|
type: "number",
|
|
263
|
-
description: "
|
|
263
|
+
description: "传入数值向下取整后的结果"
|
|
264
264
|
},
|
|
265
265
|
namespace: "数学函数"
|
|
266
266
|
},
|
|
@@ -282,7 +282,7 @@ export default [
|
|
|
282
282
|
],
|
|
283
283
|
returns: {
|
|
284
284
|
type: "number",
|
|
285
|
-
description: "
|
|
285
|
+
description: "传入数值向上取整后的结果"
|
|
286
286
|
},
|
|
287
287
|
namespace: "数学函数"
|
|
288
288
|
},
|
|
@@ -299,7 +299,7 @@ export default [
|
|
|
299
299
|
],
|
|
300
300
|
returns: {
|
|
301
301
|
type: "number",
|
|
302
|
-
description: "
|
|
302
|
+
description: "开平方的结果"
|
|
303
303
|
},
|
|
304
304
|
namespace: "数学函数"
|
|
305
305
|
},
|
|
@@ -316,7 +316,80 @@ export default [
|
|
|
316
316
|
],
|
|
317
317
|
returns: {
|
|
318
318
|
type: "number",
|
|
319
|
-
description: "
|
|
319
|
+
description: "所有数值的平均值"
|
|
320
|
+
},
|
|
321
|
+
namespace: "数学函数"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
name: "DEVSQ",
|
|
325
|
+
description: "返回数据点与数据均值点之差(数据偏差)的平方和",
|
|
326
|
+
example: "DEVSQ(num1, num2, ...numN)",
|
|
327
|
+
params: [
|
|
328
|
+
{
|
|
329
|
+
type: "...number",
|
|
330
|
+
name: "num",
|
|
331
|
+
description: "要处理的数字"
|
|
332
|
+
}
|
|
333
|
+
],
|
|
334
|
+
returns: {
|
|
335
|
+
type: "number",
|
|
336
|
+
description: "所有数值的平均值"
|
|
337
|
+
},
|
|
338
|
+
namespace: "数学函数"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
name: "AVEDEV",
|
|
342
|
+
description: "数据点到其算术平均值的绝对偏差的平均值",
|
|
343
|
+
example: "AVEDEV(num1, num2, ...numN)",
|
|
344
|
+
params: [
|
|
345
|
+
{
|
|
346
|
+
type: "...number",
|
|
347
|
+
name: "num",
|
|
348
|
+
description: "要处理的数字"
|
|
349
|
+
}
|
|
350
|
+
],
|
|
351
|
+
returns: {
|
|
352
|
+
type: "number",
|
|
353
|
+
description: "所有数值的平均值"
|
|
354
|
+
},
|
|
355
|
+
namespace: "数学函数"
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
name: "HARMEAN",
|
|
359
|
+
description: "数据点的调和平均值",
|
|
360
|
+
example: "HARMEAN(num1, num2, ...numN)",
|
|
361
|
+
params: [
|
|
362
|
+
{
|
|
363
|
+
type: "...number",
|
|
364
|
+
name: "num",
|
|
365
|
+
description: "要处理的数字"
|
|
366
|
+
}
|
|
367
|
+
],
|
|
368
|
+
returns: {
|
|
369
|
+
type: "number",
|
|
370
|
+
description: "所有数值的平均值"
|
|
371
|
+
},
|
|
372
|
+
namespace: "数学函数"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
name: "LARGE",
|
|
376
|
+
description: "数据集中第 k 个最大值",
|
|
377
|
+
example: "LARGE(array, k)",
|
|
378
|
+
params: [
|
|
379
|
+
{
|
|
380
|
+
type: "array",
|
|
381
|
+
name: "nums",
|
|
382
|
+
description: "要处理的数字"
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
type: "number",
|
|
386
|
+
name: "k",
|
|
387
|
+
description: "第几大"
|
|
388
|
+
}
|
|
389
|
+
],
|
|
390
|
+
returns: {
|
|
391
|
+
type: "number",
|
|
392
|
+
description: "所有数值的平均值"
|
|
320
393
|
},
|
|
321
394
|
namespace: "数学函数"
|
|
322
395
|
},
|
|
@@ -333,7 +406,7 @@ export default [
|
|
|
333
406
|
],
|
|
334
407
|
returns: {
|
|
335
408
|
type: "string",
|
|
336
|
-
description: "
|
|
409
|
+
description: "数值中文大写字符"
|
|
337
410
|
},
|
|
338
411
|
namespace: "数学函数"
|
|
339
412
|
},
|
|
@@ -344,7 +417,7 @@ export default [
|
|
|
344
417
|
params: [],
|
|
345
418
|
returns: {
|
|
346
419
|
type: "number",
|
|
347
|
-
description: "
|
|
420
|
+
description: "随机数"
|
|
348
421
|
},
|
|
349
422
|
namespace: "数学函数"
|
|
350
423
|
},
|
|
@@ -422,7 +495,7 @@ export default [
|
|
|
422
495
|
],
|
|
423
496
|
returns: {
|
|
424
497
|
type: "Array<number>",
|
|
425
|
-
description: "
|
|
498
|
+
description: "长度集合"
|
|
426
499
|
},
|
|
427
500
|
namespace: "文本函数"
|
|
428
501
|
},
|
|
@@ -439,7 +512,7 @@ export default [
|
|
|
439
512
|
],
|
|
440
513
|
returns: {
|
|
441
514
|
type: "boolean",
|
|
442
|
-
description: "
|
|
515
|
+
description: "判断结果"
|
|
443
516
|
},
|
|
444
517
|
namespace: "文本函数"
|
|
445
518
|
},
|
|
@@ -456,7 +529,7 @@ export default [
|
|
|
456
529
|
],
|
|
457
530
|
returns: {
|
|
458
531
|
type: "string",
|
|
459
|
-
description: "
|
|
532
|
+
description: "连接后的文本"
|
|
460
533
|
},
|
|
461
534
|
namespace: "文本函数"
|
|
462
535
|
},
|
|
@@ -473,7 +546,7 @@ export default [
|
|
|
473
546
|
],
|
|
474
547
|
returns: {
|
|
475
548
|
type: "string",
|
|
476
|
-
description: "
|
|
549
|
+
description: "指定位置的字符"
|
|
477
550
|
},
|
|
478
551
|
namespace: "文本函数"
|
|
479
552
|
},
|
|
@@ -490,7 +563,7 @@ export default [
|
|
|
490
563
|
],
|
|
491
564
|
returns: {
|
|
492
565
|
type: "string",
|
|
493
|
-
description: "
|
|
566
|
+
description: "结果文本"
|
|
494
567
|
},
|
|
495
568
|
namespace: "文本函数"
|
|
496
569
|
},
|
|
@@ -507,7 +580,129 @@ export default [
|
|
|
507
580
|
],
|
|
508
581
|
returns: {
|
|
509
582
|
type: "string",
|
|
510
|
-
description: "
|
|
583
|
+
description: "结果文本"
|
|
584
|
+
},
|
|
585
|
+
namespace: "文本函数"
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
name: "UPPERFIRST",
|
|
589
|
+
description: "将传入文本首字母转成大写",
|
|
590
|
+
example: "UPPERFIRST(text)",
|
|
591
|
+
params: [
|
|
592
|
+
{
|
|
593
|
+
type: "string",
|
|
594
|
+
name: "text",
|
|
595
|
+
description: "文本"
|
|
596
|
+
}
|
|
597
|
+
],
|
|
598
|
+
returns: {
|
|
599
|
+
type: "string",
|
|
600
|
+
description: "结果文本"
|
|
601
|
+
},
|
|
602
|
+
namespace: "文本函数"
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
name: "PADSTART",
|
|
606
|
+
description: "向前补齐文本长度\n\n示例 `PADSTART(\"6\", 2, \"0\")`\n\n返回 `06`",
|
|
607
|
+
example: "PADSTART(text)",
|
|
608
|
+
params: [
|
|
609
|
+
{
|
|
610
|
+
type: "string",
|
|
611
|
+
name: "text",
|
|
612
|
+
description: "文本"
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
type: "number",
|
|
616
|
+
name: "num",
|
|
617
|
+
description: "目标长度"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
type: "string",
|
|
621
|
+
name: "pad",
|
|
622
|
+
description: "用于补齐的文本"
|
|
623
|
+
}
|
|
624
|
+
],
|
|
625
|
+
returns: {
|
|
626
|
+
type: "string",
|
|
627
|
+
description: "结果文本"
|
|
628
|
+
},
|
|
629
|
+
namespace: "文本函数"
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
name: "CAPITALIZE",
|
|
633
|
+
description: "将文本转成标题\n\n示例 `CAPITALIZE(\"star\")`\n\n返回 `Star`",
|
|
634
|
+
example: "CAPITALIZE(text)",
|
|
635
|
+
params: [
|
|
636
|
+
{
|
|
637
|
+
type: "string",
|
|
638
|
+
name: "text",
|
|
639
|
+
description: "文本"
|
|
640
|
+
}
|
|
641
|
+
],
|
|
642
|
+
returns: {
|
|
643
|
+
type: "string",
|
|
644
|
+
description: "结果文本"
|
|
645
|
+
},
|
|
646
|
+
namespace: "文本函数"
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
name: "ESCAPE",
|
|
650
|
+
description: "对文本进行 HTML 转义\n\n示例 `ESCAPE(\"star\")`\n\n返回 `Star`",
|
|
651
|
+
example: "ESCAPE(text)",
|
|
652
|
+
params: [
|
|
653
|
+
{
|
|
654
|
+
type: "string",
|
|
655
|
+
name: "text",
|
|
656
|
+
description: "文本"
|
|
657
|
+
}
|
|
658
|
+
],
|
|
659
|
+
returns: {
|
|
660
|
+
type: "string",
|
|
661
|
+
description: "结果文本"
|
|
662
|
+
},
|
|
663
|
+
namespace: "文本函数"
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
name: "TRUNCATE",
|
|
667
|
+
description: "对文本长度进行截断\n\n示例 `TRUNCATE(\"amis.baidu.com\", 6)`\n\n返回 `amis...`",
|
|
668
|
+
example: "TRUNCATE(text, 6)",
|
|
669
|
+
params: [
|
|
670
|
+
{
|
|
671
|
+
type: "string",
|
|
672
|
+
name: "text",
|
|
673
|
+
description: "文本"
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
type: "number",
|
|
677
|
+
name: "text",
|
|
678
|
+
description: "最长长度"
|
|
679
|
+
}
|
|
680
|
+
],
|
|
681
|
+
returns: {
|
|
682
|
+
type: "string",
|
|
683
|
+
description: "结果文本"
|
|
684
|
+
},
|
|
685
|
+
namespace: "文本函数"
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
name: "BEFORELAST",
|
|
689
|
+
description: "取在某个分隔符之前的所有字符串",
|
|
690
|
+
example: "BEFORELAST(text, '.')",
|
|
691
|
+
params: [
|
|
692
|
+
{
|
|
693
|
+
type: "string",
|
|
694
|
+
name: "text",
|
|
695
|
+
description: "文本"
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
type: "string",
|
|
699
|
+
name: "delimiter",
|
|
700
|
+
description: "结束文本"
|
|
701
|
+
}
|
|
702
|
+
],
|
|
703
|
+
returns: {
|
|
704
|
+
type: "string",
|
|
705
|
+
description: "判断结果"
|
|
511
706
|
},
|
|
512
707
|
namespace: "文本函数"
|
|
513
708
|
},
|
|
@@ -529,7 +724,7 @@ export default [
|
|
|
529
724
|
],
|
|
530
725
|
returns: {
|
|
531
726
|
type: "Array<string>",
|
|
532
|
-
description: "
|
|
727
|
+
description: "文本集"
|
|
533
728
|
},
|
|
534
729
|
namespace: "文本函数"
|
|
535
730
|
},
|
|
@@ -546,7 +741,41 @@ export default [
|
|
|
546
741
|
],
|
|
547
742
|
returns: {
|
|
548
743
|
type: "string",
|
|
549
|
-
description: "
|
|
744
|
+
description: "处理后的文本"
|
|
745
|
+
},
|
|
746
|
+
namespace: "文本函数"
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
name: "STRIPTAG",
|
|
750
|
+
description: "去除文本中的 HTML 标签\n\n示例:`STRIPTAG(\"<b>amis</b>\")`\n\n返回:`amis`",
|
|
751
|
+
example: "STRIPTAG(text)",
|
|
752
|
+
params: [
|
|
753
|
+
{
|
|
754
|
+
type: "string",
|
|
755
|
+
name: "text",
|
|
756
|
+
description: "文本"
|
|
757
|
+
}
|
|
758
|
+
],
|
|
759
|
+
returns: {
|
|
760
|
+
type: "string",
|
|
761
|
+
description: "处理后的文本"
|
|
762
|
+
},
|
|
763
|
+
namespace: "文本函数"
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
name: "LINEBREAK",
|
|
767
|
+
description: "将字符串中的换行转成 HTML `<br>`,用于简单换行的场景\n\n示例:`LINEBREAK(\"\\n\")`\n\n返回:`<br/>`",
|
|
768
|
+
example: "LINEBREAK(text)",
|
|
769
|
+
params: [
|
|
770
|
+
{
|
|
771
|
+
type: "string",
|
|
772
|
+
name: "text",
|
|
773
|
+
description: "文本"
|
|
774
|
+
}
|
|
775
|
+
],
|
|
776
|
+
returns: {
|
|
777
|
+
type: "string",
|
|
778
|
+
description: "处理后的文本"
|
|
550
779
|
},
|
|
551
780
|
namespace: "文本函数"
|
|
552
781
|
},
|
|
@@ -568,7 +797,29 @@ export default [
|
|
|
568
797
|
],
|
|
569
798
|
returns: {
|
|
570
799
|
type: "string",
|
|
571
|
-
description: "
|
|
800
|
+
description: "判断结果"
|
|
801
|
+
},
|
|
802
|
+
namespace: "文本函数"
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
name: "ENDSWITH",
|
|
806
|
+
description: "判断字符串(text)是否以特定字符串(endString)结束,是则返回 True,否则返回 False",
|
|
807
|
+
example: "ENDSWITH(text, '片段')",
|
|
808
|
+
params: [
|
|
809
|
+
{
|
|
810
|
+
type: "string",
|
|
811
|
+
name: "text",
|
|
812
|
+
description: "文本"
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
type: "string",
|
|
816
|
+
name: "endString",
|
|
817
|
+
description: "结束文本"
|
|
818
|
+
}
|
|
819
|
+
],
|
|
820
|
+
returns: {
|
|
821
|
+
type: "string",
|
|
822
|
+
description: "判断结果"
|
|
572
823
|
},
|
|
573
824
|
namespace: "文本函数"
|
|
574
825
|
},
|
|
@@ -590,7 +841,7 @@ export default [
|
|
|
590
841
|
],
|
|
591
842
|
returns: {
|
|
592
843
|
type: "string",
|
|
593
|
-
description: "
|
|
844
|
+
description: "判断结果"
|
|
594
845
|
},
|
|
595
846
|
namespace: "文本函数"
|
|
596
847
|
},
|
|
@@ -617,7 +868,7 @@ export default [
|
|
|
617
868
|
],
|
|
618
869
|
returns: {
|
|
619
870
|
type: "string",
|
|
620
|
-
description: "
|
|
871
|
+
description: "处理结果"
|
|
621
872
|
},
|
|
622
873
|
namespace: "文本函数"
|
|
623
874
|
},
|
|
@@ -644,7 +895,7 @@ export default [
|
|
|
644
895
|
],
|
|
645
896
|
returns: {
|
|
646
897
|
type: "number",
|
|
647
|
-
description: "
|
|
898
|
+
description: "命中的位置"
|
|
648
899
|
},
|
|
649
900
|
namespace: "文本函数"
|
|
650
901
|
},
|
|
@@ -671,7 +922,7 @@ export default [
|
|
|
671
922
|
],
|
|
672
923
|
returns: {
|
|
673
924
|
type: "number",
|
|
674
|
-
description: "
|
|
925
|
+
description: "命中的位置"
|
|
675
926
|
},
|
|
676
927
|
namespace: "文本函数"
|
|
677
928
|
},
|
|
@@ -682,7 +933,7 @@ export default [
|
|
|
682
933
|
params: [],
|
|
683
934
|
returns: {
|
|
684
935
|
type: "Date",
|
|
685
|
-
description: "
|
|
936
|
+
description: "日期对象"
|
|
686
937
|
},
|
|
687
938
|
namespace: "日期函数"
|
|
688
939
|
},
|
|
@@ -704,7 +955,7 @@ export default [
|
|
|
704
955
|
],
|
|
705
956
|
returns: {
|
|
706
957
|
type: "number",
|
|
707
|
-
description: "
|
|
958
|
+
description: "时间戳"
|
|
708
959
|
},
|
|
709
960
|
namespace: "日期函数"
|
|
710
961
|
},
|
|
@@ -715,7 +966,7 @@ export default [
|
|
|
715
966
|
params: [],
|
|
716
967
|
returns: {
|
|
717
968
|
type: "number",
|
|
718
|
-
description: "
|
|
969
|
+
description: "日期"
|
|
719
970
|
},
|
|
720
971
|
namespace: "日期函数"
|
|
721
972
|
},
|
|
@@ -726,7 +977,7 @@ export default [
|
|
|
726
977
|
params: [],
|
|
727
978
|
returns: {
|
|
728
979
|
type: "number",
|
|
729
|
-
description: "
|
|
980
|
+
description: "日期"
|
|
730
981
|
},
|
|
731
982
|
namespace: "日期函数"
|
|
732
983
|
},
|
|
@@ -748,7 +999,7 @@ export default [
|
|
|
748
999
|
],
|
|
749
1000
|
returns: {
|
|
750
1001
|
type: "number",
|
|
751
|
-
description: "
|
|
1002
|
+
description: "日期字符串"
|
|
752
1003
|
},
|
|
753
1004
|
namespace: "日期函数"
|
|
754
1005
|
},
|
|
@@ -809,7 +1060,7 @@ export default [
|
|
|
809
1060
|
],
|
|
810
1061
|
returns: {
|
|
811
1062
|
type: "number",
|
|
812
|
-
description: "
|
|
1063
|
+
description: "数值"
|
|
813
1064
|
},
|
|
814
1065
|
namespace: "日期函数"
|
|
815
1066
|
},
|
|
@@ -826,7 +1077,7 @@ export default [
|
|
|
826
1077
|
],
|
|
827
1078
|
returns: {
|
|
828
1079
|
type: "number",
|
|
829
|
-
description: "
|
|
1080
|
+
description: "数值"
|
|
830
1081
|
},
|
|
831
1082
|
namespace: "日期函数"
|
|
832
1083
|
},
|
|
@@ -843,7 +1094,7 @@ export default [
|
|
|
843
1094
|
],
|
|
844
1095
|
returns: {
|
|
845
1096
|
type: "number",
|
|
846
|
-
description: "
|
|
1097
|
+
description: "数值"
|
|
847
1098
|
},
|
|
848
1099
|
namespace: "日期函数"
|
|
849
1100
|
},
|
|
@@ -860,7 +1111,7 @@ export default [
|
|
|
860
1111
|
],
|
|
861
1112
|
returns: {
|
|
862
1113
|
type: "number",
|
|
863
|
-
description: "
|
|
1114
|
+
description: "数值"
|
|
864
1115
|
},
|
|
865
1116
|
namespace: "日期函数"
|
|
866
1117
|
},
|
|
@@ -877,7 +1128,7 @@ export default [
|
|
|
877
1128
|
],
|
|
878
1129
|
returns: {
|
|
879
1130
|
type: "number",
|
|
880
|
-
description: "
|
|
1131
|
+
description: "数值"
|
|
881
1132
|
},
|
|
882
1133
|
namespace: "日期函数"
|
|
883
1134
|
},
|
|
@@ -894,7 +1145,7 @@ export default [
|
|
|
894
1145
|
],
|
|
895
1146
|
returns: {
|
|
896
1147
|
type: "number",
|
|
897
|
-
description: "
|
|
1148
|
+
description: "数值"
|
|
898
1149
|
},
|
|
899
1150
|
namespace: "日期函数"
|
|
900
1151
|
},
|
|
@@ -916,7 +1167,7 @@ export default [
|
|
|
916
1167
|
],
|
|
917
1168
|
returns: {
|
|
918
1169
|
type: "number",
|
|
919
|
-
description: "
|
|
1170
|
+
description: "数值"
|
|
920
1171
|
},
|
|
921
1172
|
namespace: "日期函数"
|
|
922
1173
|
},
|
|
@@ -938,7 +1189,7 @@ export default [
|
|
|
938
1189
|
],
|
|
939
1190
|
returns: {
|
|
940
1191
|
type: "number",
|
|
941
|
-
description: "
|
|
1192
|
+
description: "数值"
|
|
942
1193
|
},
|
|
943
1194
|
namespace: "日期函数"
|
|
944
1195
|
},
|
|
@@ -960,7 +1211,7 @@ export default [
|
|
|
960
1211
|
],
|
|
961
1212
|
returns: {
|
|
962
1213
|
type: "number",
|
|
963
|
-
description: "
|
|
1214
|
+
description: "数值"
|
|
964
1215
|
},
|
|
965
1216
|
namespace: "日期函数"
|
|
966
1217
|
},
|
|
@@ -982,7 +1233,7 @@ export default [
|
|
|
982
1233
|
],
|
|
983
1234
|
returns: {
|
|
984
1235
|
type: "number",
|
|
985
|
-
description: "
|
|
1236
|
+
description: "数值"
|
|
986
1237
|
},
|
|
987
1238
|
namespace: "日期函数"
|
|
988
1239
|
},
|
|
@@ -1009,7 +1260,7 @@ export default [
|
|
|
1009
1260
|
],
|
|
1010
1261
|
returns: {
|
|
1011
1262
|
type: "date",
|
|
1012
|
-
description: "
|
|
1263
|
+
description: "日期对象"
|
|
1013
1264
|
},
|
|
1014
1265
|
namespace: "日期函数"
|
|
1015
1266
|
},
|
|
@@ -1031,7 +1282,7 @@ export default [
|
|
|
1031
1282
|
],
|
|
1032
1283
|
returns: {
|
|
1033
1284
|
type: "date",
|
|
1034
|
-
description: "
|
|
1285
|
+
description: "日期对象"
|
|
1035
1286
|
},
|
|
1036
1287
|
namespace: "日期函数"
|
|
1037
1288
|
},
|
|
@@ -1058,7 +1309,7 @@ export default [
|
|
|
1058
1309
|
],
|
|
1059
1310
|
returns: {
|
|
1060
1311
|
type: "boolean",
|
|
1061
|
-
description: "
|
|
1312
|
+
description: "判断结果"
|
|
1062
1313
|
},
|
|
1063
1314
|
namespace: "日期函数"
|
|
1064
1315
|
},
|
|
@@ -1085,7 +1336,7 @@ export default [
|
|
|
1085
1336
|
],
|
|
1086
1337
|
returns: {
|
|
1087
1338
|
type: "boolean",
|
|
1088
|
-
description: "
|
|
1339
|
+
description: "判断结果"
|
|
1089
1340
|
},
|
|
1090
1341
|
namespace: "日期函数"
|
|
1091
1342
|
},
|
|
@@ -1112,7 +1363,7 @@ export default [
|
|
|
1112
1363
|
],
|
|
1113
1364
|
returns: {
|
|
1114
1365
|
type: "boolean",
|
|
1115
|
-
description: "
|
|
1366
|
+
description: "判断结果"
|
|
1116
1367
|
},
|
|
1117
1368
|
namespace: "日期函数"
|
|
1118
1369
|
},
|
|
@@ -1139,7 +1390,7 @@ export default [
|
|
|
1139
1390
|
],
|
|
1140
1391
|
returns: {
|
|
1141
1392
|
type: "boolean",
|
|
1142
|
-
description: "
|
|
1393
|
+
description: "判断结果"
|
|
1143
1394
|
},
|
|
1144
1395
|
namespace: "日期函数"
|
|
1145
1396
|
},
|
|
@@ -1156,7 +1407,7 @@ export default [
|
|
|
1156
1407
|
],
|
|
1157
1408
|
returns: {
|
|
1158
1409
|
type: "boolean",
|
|
1159
|
-
description: "
|
|
1410
|
+
description: "结果"
|
|
1160
1411
|
},
|
|
1161
1412
|
namespace: "其他"
|
|
1162
1413
|
}
|