|
4 | 4 | * MIT Licensed |
5 | 5 | */ |
6 | 6 |
|
7 | | -/*! |
8 | | - * Dependencies that are used for multiple exports are required here only once |
9 | | - */ |
10 | | - |
| 7 | +// Dependencies that are used for multiple exports are required here only once |
11 | 8 | import * as checkError from 'check-error'; |
12 | 9 |
|
13 | | -/*! |
14 | | - * test utility |
15 | | - */ |
16 | | - |
| 10 | +// test utility |
17 | 11 | export {test} from './test.js'; |
18 | 12 |
|
19 | | -/*! |
20 | | - * type utility |
21 | | - */ |
22 | | - |
| 13 | +// type utility |
23 | 14 | export {type} from './type-detect.js'; |
24 | 15 |
|
25 | | -/*! |
26 | | - * expectTypes utility |
27 | | - */ |
| 16 | +// expectTypes utility |
28 | 17 | export {expectTypes} from './expectTypes.js'; |
29 | 18 |
|
30 | | -/*! |
31 | | - * message utility |
32 | | - */ |
33 | | - |
| 19 | +// message utility |
34 | 20 | export {getMessage} from './getMessage.js'; |
35 | 21 |
|
36 | | -/*! |
37 | | - * actual utility |
38 | | - */ |
39 | | - |
| 22 | +// actual utility |
40 | 23 | export {getActual} from './getActual.js'; |
41 | 24 |
|
42 | | -/*! |
43 | | - * Inspect util |
44 | | - */ |
45 | | - |
| 25 | +// Inspect util |
46 | 26 | export {inspect} from './inspect.js'; |
47 | 27 |
|
48 | | -/*! |
49 | | - * Object Display util |
50 | | - */ |
51 | | - |
| 28 | +// Object Display util |
52 | 29 | export {objDisplay} from './objDisplay.js'; |
53 | 30 |
|
54 | | -/*! |
55 | | - * Flag utility |
56 | | - */ |
57 | | - |
| 31 | +// Flag utility |
58 | 32 | export {flag} from './flag.js'; |
59 | 33 |
|
60 | | -/*! |
61 | | - * Flag transferring utility |
62 | | - */ |
63 | | - |
| 34 | +// Flag transferring utility |
64 | 35 | export {transferFlags} from './transferFlags.js'; |
65 | 36 |
|
66 | | -/*! |
67 | | - * Deep equal utility |
68 | | - */ |
69 | | - |
| 37 | +// Deep equal utility |
70 | 38 | export {default as eql} from 'deep-eql'; |
71 | 39 |
|
72 | | -/*! |
73 | | - * Deep path info |
74 | | - */ |
75 | | - |
| 40 | +// Deep path info |
76 | 41 | export {getPathInfo, hasProperty} from 'pathval'; |
77 | 42 |
|
78 | | -/*! |
79 | | - * Function name |
80 | | - */ |
81 | | - |
| 43 | +// Function name |
82 | 44 | export function getName(fn) { |
83 | 45 | return fn.name |
84 | 46 | } |
85 | 47 |
|
86 | | -/*! |
87 | | - * add Property |
88 | | - */ |
89 | | - |
| 48 | +// add Property |
90 | 49 | export {addProperty} from './addProperty.js'; |
91 | 50 |
|
92 | | -/*! |
93 | | - * add Method |
94 | | - */ |
95 | | - |
| 51 | +// add Method |
96 | 52 | export {addMethod} from './addMethod.js'; |
97 | 53 |
|
98 | | -/*! |
99 | | - * overwrite Property |
100 | | - */ |
101 | | - |
| 54 | +// overwrite Property |
102 | 55 | export {overwriteProperty} from './overwriteProperty.js'; |
103 | 56 |
|
104 | | -/*! |
105 | | - * overwrite Method |
106 | | - */ |
107 | | - |
| 57 | +// overwrite Method |
108 | 58 | export {overwriteMethod} from './overwriteMethod.js'; |
109 | 59 |
|
110 | | -/*! |
111 | | - * Add a chainable method |
112 | | - */ |
113 | | - |
| 60 | +// Add a chainable method |
114 | 61 | export {addChainableMethod} from './addChainableMethod.js'; |
115 | 62 |
|
116 | | -/*! |
117 | | - * Overwrite chainable method |
118 | | - */ |
119 | | - |
| 63 | +// Overwrite chainable method |
120 | 64 | export {overwriteChainableMethod} from './overwriteChainableMethod.js'; |
121 | 65 |
|
122 | | -/*! |
123 | | - * Compare by inspect method |
124 | | - */ |
125 | | - |
| 66 | +// Compare by inspect method |
126 | 67 | export {compareByInspect} from './compareByInspect.js'; |
127 | 68 |
|
128 | | -/*! |
129 | | - * Get own enumerable property symbols method |
130 | | - */ |
131 | | - |
| 69 | +// Get own enumerable property symbols method |
132 | 70 | export {getOwnEnumerablePropertySymbols} from './getOwnEnumerablePropertySymbols.js'; |
133 | 71 |
|
134 | | -/*! |
135 | | - * Get own enumerable properties method |
136 | | - */ |
137 | | - |
| 72 | +// Get own enumerable properties method |
138 | 73 | export {getOwnEnumerableProperties} from './getOwnEnumerableProperties.js'; |
139 | 74 |
|
140 | | -/*! |
141 | | - * Checks error against a given set of criteria |
142 | | - */ |
143 | | - |
| 75 | +// Checks error against a given set of criteria |
144 | 76 | export {checkError}; |
145 | 77 |
|
146 | | -/*! |
147 | | - * Proxify util |
148 | | - */ |
149 | | - |
| 78 | +// Proxify util |
150 | 79 | export {proxify} from './proxify.js'; |
151 | 80 |
|
152 | | -/*! |
153 | | - * addLengthGuard util |
154 | | - */ |
155 | | - |
| 81 | +// addLengthGuard util |
156 | 82 | export {addLengthGuard} from './addLengthGuard.js'; |
157 | 83 |
|
158 | | -/*! |
159 | | - * isProxyEnabled helper |
160 | | - */ |
161 | | - |
| 84 | +// isProxyEnabled helper |
162 | 85 | export {isProxyEnabled} from './isProxyEnabled.js'; |
163 | 86 |
|
164 | | -/*! |
165 | | - * isNaN method |
166 | | - */ |
167 | | - |
| 87 | +// isNaN method |
168 | 88 | export {isNaN} from './isNaN.js'; |
169 | 89 |
|
170 | | -/*! |
171 | | - * getOperator method |
172 | | - */ |
173 | | - |
| 90 | +// getOperator method |
174 | 91 | export {getOperator} from './getOperator.js'; |
0 commit comments