|
1 | | -import { $ } from './$'; |
2 | | -import { add } from './add'; |
3 | | -import { and } from './and'; |
4 | | -import { cat } from './cat'; |
5 | | -import { ceil } from './ceil'; |
6 | | -import { div } from './div'; |
7 | | -import { eq } from './eq'; |
8 | | -import { fix } from './fix'; |
9 | | -import { flr } from './flr'; |
10 | | -import { get } from './get'; |
11 | | -import { gt } from './gt'; |
12 | | -import { gte } from './gte'; |
13 | | -import { idx } from './idx'; |
14 | | -import { is } from './is'; |
15 | | -import { join } from './join'; |
16 | | -import { len } from './len'; |
17 | | -import { low } from './low'; |
18 | | -import { lt } from './lt'; |
19 | | -import { lte } from './lte'; |
20 | | -import { max } from './max'; |
21 | | -import { min } from './min'; |
22 | | -import { mul } from './mul'; |
23 | | -import { not } from './not'; |
24 | | -import { or } from './or'; |
25 | | -import { pl } from './pl'; |
26 | | -import { pr } from './pr'; |
27 | | -import { rnd } from './rnd'; |
28 | | -import { rpl } from './rpl'; |
29 | | -import { rpt } from './rpt'; |
30 | | -import { sbs } from './sbs'; |
31 | | -import { slc } from './slc'; |
32 | | -import { sub } from './sub'; |
33 | | -import { trim } from './trim'; |
34 | | -import { up } from './up'; |
35 | | - |
36 | 1 | export { $ } from './$'; |
37 | 2 | export { add } from './add'; |
38 | 3 | export { and } from './and'; |
@@ -67,59 +32,3 @@ export { slc } from './slc'; |
67 | 32 | export { sub } from './sub'; |
68 | 33 | export { trim } from './trim'; |
69 | 34 | export { up } from './up'; |
70 | | - |
71 | | -export const logicFns = { |
72 | | - and, |
73 | | - eq, |
74 | | - gt, |
75 | | - gte, |
76 | | - is, |
77 | | - lt, |
78 | | - lte, |
79 | | - not, |
80 | | - or, |
81 | | -}; |
82 | | - |
83 | | -export const numberFns = { |
84 | | - add, |
85 | | - ceil, |
86 | | - div, |
87 | | - flr, |
88 | | - fix, |
89 | | - max, |
90 | | - min, |
91 | | - mul, |
92 | | - rnd, |
93 | | - sub, |
94 | | -}; |
95 | | - |
96 | | -export const stringFns = { |
97 | | - cat, |
98 | | - idx, |
99 | | - len, |
100 | | - low, |
101 | | - pl, |
102 | | - pr, |
103 | | - rpt, |
104 | | - rpl, |
105 | | - sbs, |
106 | | - slc, |
107 | | - trim, |
108 | | - up, |
109 | | -}; |
110 | | - |
111 | | -export const utilFns = { |
112 | | - $, |
113 | | - get, |
114 | | - join, |
115 | | - idx, |
116 | | - len, |
117 | | - slc, |
118 | | -}; |
119 | | - |
120 | | -export const fns = { |
121 | | - ...logicFns, |
122 | | - ...numberFns, |
123 | | - ...stringFns, |
124 | | - ...utilFns, |
125 | | -}; |
0 commit comments