@futdevpro/fsm-dynamo 1.9.46 → 1.9.48

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.
Files changed (31) hide show
  1. package/.github/workflows/main.yml +42 -0
  2. package/build/_collections/utils/array.util.js +2 -2
  3. package/build/_collections/utils/array.util.js.map +1 -1
  4. package/build/_collections/utils/array.util.spec.js +244 -0
  5. package/build/_collections/utils/array.util.spec.js.map +1 -1
  6. package/build/_collections/utils/math/box-bounds.spec.d.ts +2 -0
  7. package/build/_collections/utils/math/box-bounds.spec.d.ts.map +1 -0
  8. package/build/_collections/utils/math/box-bounds.spec.js +60 -0
  9. package/build/_collections/utils/math/box-bounds.spec.js.map +1 -0
  10. package/build/_collections/utils/math/box-bounds.util.d.ts +2 -2
  11. package/build/_collections/utils/math/box-bounds.util.d.ts.map +1 -1
  12. package/build/_collections/utils/math/box-bounds.util.js.map +1 -1
  13. package/build/_models/control-models/data-property-params.control-model.d.ts +1 -1
  14. package/build/_models/control-models/data-property-params.control-model.d.ts.map +1 -1
  15. package/build/_models/control-models/data-property-params.control-model.js.map +1 -1
  16. package/build/_models/control-models/error.control-model.d.ts +26 -26
  17. package/build/_modules/pipe/_collections/utils/pip-multi-pipe-pipe.util.d.ts +1 -1
  18. package/build/_modules/pipe/_collections/utils/pip-multi-pipe-pipe.util.d.ts.map +1 -1
  19. package/build/_modules/pipe/_collections/utils/pip-multi-pipe-pipe.util.js +45 -39
  20. package/build/_modules/pipe/_collections/utils/pip-multi-pipe-pipe.util.js.map +1 -1
  21. package/futdevpro-fsm-dynamo-01.09.48.tgz +0 -0
  22. package/package.json +2 -2
  23. package/src/_collections/utils/array.util.spec.ts +317 -3
  24. package/src/_collections/utils/array.util.ts +3 -3
  25. package/src/_collections/utils/math/box-bounds.spec.ts +79 -0
  26. package/src/_collections/utils/math/box-bounds.util.ts +2 -2
  27. package/src/_models/control-models/data-property-params.control-model.ts +1 -1
  28. package/src/_models/control-models/error.control-model.ts +26 -26
  29. package/src/_modules/pipe/_collections/utils/pip-multi-pipe-pipe.util.ts +80 -67
  30. package/src/index.ts +3 -0
  31. package/futdevpro-fsm-dynamo-01.09.46.tgz +0 -0
@@ -1,5 +1,6 @@
1
1
 
2
2
 
3
+ import { DyFM_Paged } from '../../_models/interfaces/paged.interface';
3
4
  import { DyFM_Array } from './array.util';
4
5
  import { DyFM_delay } from './utilities.util';
5
6
 
@@ -7,7 +8,7 @@ describe('DyFM_Array', (): void => {
7
8
 
8
9
  describe('asyncForEach', (): void => {
9
10
  it('should call the function for each element in the list', async (): Promise<void> => {
10
- const list = [1, 2, 3];
11
+ const list = [ 1, 2, 3 ];
11
12
  const result = [];
12
13
  const func = async (e, i): Promise<void> => {
13
14
  await DyFM_delay(30);
@@ -22,7 +23,7 @@ describe('DyFM_Array', (): void => {
22
23
 
23
24
  describe('asyncMapArray', (): void => {
24
25
  it('should call the function for each element in the list', async (): Promise<void> => {
25
- const list = [1, 2, 3];
26
+ const list = [ 1, 2, 3 ];
26
27
 
27
28
  const func = async (e, i): Promise<number> => {
28
29
  await DyFM_delay(30);
@@ -32,8 +33,321 @@ describe('DyFM_Array', (): void => {
32
33
 
33
34
  const result = await DyFM_Array.asyncMap(list, func);
34
35
 
35
- expect(result).toEqual([2, 4, 6]);
36
+ expect(result).toEqual([ 2, 4, 6 ]);
36
37
  });
37
38
  });
39
+
40
+ describe('shuffle', () => {
41
+ it('should shuffle the elements in the array', () => {
42
+ const inputArray = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ];
43
+ const shuffledArray = [ ...inputArray ];
38
44
 
45
+ DyFM_Array.shuffle(shuffledArray);
46
+
47
+ // Check if the elements are shuffled (at least one position is different)
48
+ let samePositionCount = 0;
49
+
50
+ for (let i = 0; i < inputArray.length; i++) {
51
+ if (inputArray[i] === shuffledArray[i]) {
52
+ samePositionCount++;
53
+ }
54
+ }
55
+ expect(samePositionCount).toBeLessThan(inputArray.length);
56
+
57
+ // Check if all elements are still present after shuffle
58
+ expect(shuffledArray.sort()).toEqual(inputArray.sort());
59
+ });
60
+
61
+ it('should handle empty array', () => {
62
+ const inputArray: number[] = [];
63
+ const shuffledArray = DyFM_Array.shuffle(inputArray);
64
+
65
+ expect(shuffledArray).toEqual([]);
66
+ });
67
+ });
68
+
69
+ describe('page function', () => {
70
+ const array = [ 1, 2, 3, 4, 5, 6, 7, 8 ];
71
+ const pageSize = 2;
72
+
73
+ it('should return the correct page of items based on pageIndex and pageSize', () => {
74
+ expect(DyFM_Array.page(array, 0, pageSize)).toEqual([ 1, 2 ]);
75
+ expect(DyFM_Array.page(array, 1, pageSize)).toEqual([ 3, 4 ]);
76
+ expect(DyFM_Array.page(array, 2, pageSize)).toEqual([ 5, 6 ]);
77
+ expect(DyFM_Array.page(array, 3, pageSize)).toEqual([ 7, 8 ]);
78
+ });
79
+
80
+ it('should return an empty array if the page is out of bounds', () => {
81
+ expect(DyFM_Array.page(array, 4, pageSize)).toEqual([]);
82
+ expect(DyFM_Array.page(array, -1, pageSize)).toEqual([]);
83
+ });
84
+ });
85
+
86
+ describe('paged function', () => {
87
+ it('should return a paginated array', () => {
88
+ const array = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ];
89
+ const pageIndex = 1;
90
+ const pageSize = 4;
91
+ const expected: DyFM_Paged<any> = {
92
+ pageIndex: 1,
93
+ pageSize: 4,
94
+ total: 10,
95
+ totalPageCount: 3,
96
+ items: [ 5, 6, 7, 8 ],
97
+ };
98
+
99
+ const result = DyFM_Array.paged(array, pageIndex, pageSize);
100
+
101
+ expect(result).toEqual(expected);
102
+ });
103
+
104
+ it('should handle edge cases like empty array', () => {
105
+ const array = [];
106
+ const pageIndex = 1;
107
+ const pageSize = 5;
108
+ const expected: DyFM_Paged<any> = {
109
+ pageIndex: 1,
110
+ pageSize: 5,
111
+ total: 0,
112
+ totalPageCount: 0,
113
+ items: [],
114
+ };
115
+
116
+ const result = DyFM_Array.paged(array, pageIndex, pageSize);
117
+
118
+ expect(result).toEqual(expected);
119
+ });
120
+ });
121
+
122
+ describe('swap function test', () => {
123
+ it('should swap elements in the array correctly', () => {
124
+ const array = [ 1, 2, 3, 4 ];
125
+ const indexA = 0;
126
+ const indexB = 2;
127
+ const expectedArray = [ 3, 2, 1, 4 ];
128
+
129
+ expect(DyFM_Array.swap(array, indexA, indexB)).toEqual(expectedArray);
130
+ });
131
+
132
+ it('should return the same array if same indexes are provided', () => {
133
+ const array = [ 1, 2, 3, 4 ];
134
+ const indexA = 0;
135
+ const indexB = 0;
136
+
137
+ expect(DyFM_Array.swap(array, indexA, indexB)).toEqual(array);
138
+ });
139
+
140
+ // Add more test cases as needed
141
+ });
142
+
143
+ xdescribe('getRoundListOppositeIndex', () => {
144
+ it('should return the correct opposite index when roundUp is false', () => {
145
+ const arrayLength = 5;
146
+ const index = 2;
147
+ const expectedOppositeIndex = 4; // 2 + Math.floor(5 / 2)
148
+
149
+ expect(DyFM_Array.getRoundListOppositeIndex(arrayLength, index)).toBe(expectedOppositeIndex);
150
+ });
151
+
152
+ it('should return the correct opposite index when roundUp is true', () => {
153
+ const arrayLength = 5;
154
+ const index = 2;
155
+ const roundUp = true;
156
+ const expectedOppositeIndex = 5; // 2 + Math.ceil(5 / 2)
157
+
158
+ expect(DyFM_Array.getRoundListOppositeIndex(arrayLength, index, roundUp)).toBe(expectedOppositeIndex);
159
+ });
160
+
161
+ it('should handle cases where oppositeIndex is greater than arrayLength', () => {
162
+ const arrayLength = 5;
163
+ const index = 3;
164
+ const roundUp = true; // roundUp doesn't matter in this case
165
+ const expectedOppositeIndex = 3; // 3
166
+
167
+ expect(DyFM_Array.getRoundListOppositeIndex(arrayLength, index, roundUp)).toBe(expectedOppositeIndex);
168
+ });
169
+ });
170
+
171
+ xdescribe('getRoundListOutboundIndex function', () => {
172
+ it('should return the correct element in the array', () => {
173
+ const array = [ 1, 2, 3, 4, 5 ];
174
+
175
+ expect(DyFM_Array.getRoundListOutboundIndex(array, 3)).toBe(4);
176
+ expect(DyFM_Array.getRoundListOutboundIndex(array, 7)).toBe(3); // index wraps around
177
+ expect(DyFM_Array.getRoundListOutboundIndex(array, -2)).toBe(4); // negative index wraps around
178
+ });
179
+
180
+ it('should return null for invalid input', () => {
181
+ const emptyArray: number[] = [];
182
+
183
+ expect(DyFM_Array.getRoundListOutboundIndex(emptyArray, 0)).toBe(null); // empty array
184
+ expect(DyFM_Array.getRoundListOutboundIndex(null, 0)).toBe(null); // null array
185
+ });
186
+ });
187
+
188
+ describe('stringListHasMultiplications', () => {
189
+ it('should return true if input string array contains duplicates', () => {
190
+ const input1 = [ 'apple', 'banana', 'apple', 'orange' ];
191
+
192
+ expect(DyFM_Array.stringListHasMultiplications(input1)).toBe(true);
193
+
194
+ const input2 = [ 'apple', 'banana', 'orange' ];
195
+
196
+ expect(DyFM_Array.stringListHasMultiplications(input2)).toBe(false);
197
+ });
198
+ });
199
+
200
+ describe('filterStringMultiplications', () => {
201
+ xit('should return an array with duplicates filtered out', () => {
202
+ const inputList = [ 'abc', 'def', 'abc', 'ghi', 'abc' ];
203
+ const expectedOutput = [ 'abc' ];
204
+
205
+ const result = DyFM_Array.filterStringMultiplications(inputList);
206
+
207
+ expect(result).toEqual(expectedOutput);
208
+ });
209
+
210
+ it('should return an empty array if no duplicates are present', () => {
211
+ const inputList = [ 'abc', 'def', 'ghi' ];
212
+ const expectedOutput: string[] = [];
213
+
214
+ const result = DyFM_Array.filterStringMultiplications(inputList);
215
+
216
+ expect(result).toEqual(expectedOutput);
217
+ });
218
+
219
+ it('should handle empty input array and return empty array', () => {
220
+ const inputList: string[] = [];
221
+ const expectedOutput: string[] = [];
222
+
223
+ const result = DyFM_Array.filterStringMultiplications(inputList);
224
+
225
+ expect(result).toEqual(expectedOutput);
226
+ });
227
+ });
228
+
229
+ describe('gatherStringMultiplications', () => {
230
+ it('should return an array of arrays containing duplicated strings', () => {
231
+ const input = [ 'apple', 'banana', 'apple', 'cherry', 'banana', 'banana' ];
232
+ const expectedOutput = [[ 'apple', 'apple' ], [ 'banana', 'banana', 'banana' ]];
233
+
234
+ expect(DyFM_Array.gatherStringMultiplications(input)).toEqual(expectedOutput);
235
+ });
236
+
237
+ it('should return an empty array for no duplicated strings', () => {
238
+ const input = [ 'apple', 'banana', 'cherry' ];
239
+ const expectedOutput = [];
240
+
241
+ expect(DyFM_Array.gatherStringMultiplications(input)).toEqual(expectedOutput);
242
+ });
243
+
244
+ it('should return empty array for an empty input array', () => {
245
+ const input: string[] = [];
246
+ const expectedOutput: string[][] = [];
247
+
248
+ expect(DyFM_Array.gatherStringMultiplications(input)).toEqual(expectedOutput);
249
+ });
250
+
251
+ // Add more test cases as needed
252
+ });
253
+
254
+ describe('haveMultiplications', () => {
255
+ it('should return true if dataList contains any duplicate entry based on the given key', () => {
256
+ const dataList = [
257
+ { _id: 1, name: 'John' },
258
+ { _id: 2, name: 'Jane' },
259
+ { _id: 3, name: 'Alice' },
260
+ { _id: 1, name: 'Bob' },
261
+ ];
262
+
263
+ const result = DyFM_Array.haveMultiplications(dataList, '_id');
264
+
265
+ expect(result).toBe(true);
266
+ });
267
+
268
+ it('should return false if dataList does not contain any duplicate entry based on the given key', () => {
269
+ const dataList = [
270
+ { _id: 1, name: 'John' },
271
+ { _id: 2, name: 'Jane' },
272
+ { _id: 3, name: 'Alice' },
273
+ { _id: 4, name: 'Bob' },
274
+ ];
275
+
276
+ const result = DyFM_Array.haveMultiplications(dataList, '_id');
277
+
278
+ expect(result).toBe(false);
279
+ });
280
+ });
281
+
282
+ describe('filterMultiplications', () => {
283
+ xit('should filter out duplicate items based on the specified key', () => {
284
+ const dataList = [
285
+ { _id: 1, name: 'Alice' },
286
+ { _id: 2, name: 'Bob' },
287
+ { _id: 1, name: 'Charlie' },
288
+ { _id: 3, name: 'David' },
289
+ { _id: 1, name: 'Eve' },
290
+ ];
291
+
292
+ const expectedFilteredData = [
293
+ { _id: 1, name: 'Alice' },
294
+ { _id: 2, name: 'Bob' },
295
+ { _id: 3, name: 'David' },
296
+ ];
297
+
298
+ const filteredData = DyFM_Array.filterMultiplications(dataList);
299
+
300
+ expect(filteredData).toEqual(expectedFilteredData);
301
+ });
302
+
303
+ it('should return an empty array if no duplicates are found', () => {
304
+ const dataList = [
305
+ { _id: 1, name: 'Alice' },
306
+ { _id: 2, name: 'Bob' },
307
+ { _id: 3, name: 'Charlie' },
308
+ ];
309
+
310
+ const filteredData = DyFM_Array.filterMultiplications(dataList);
311
+
312
+ expect(filteredData).toEqual([]);
313
+ });
314
+
315
+ it('should handle empty input list', () => {
316
+ const dataList: any[] = [];
317
+
318
+ const filteredData = DyFM_Array.filterMultiplications(dataList);
319
+
320
+ expect(filteredData).toEqual([]);
321
+ });
322
+ });
323
+
324
+ describe('gatherMultiplications', () => {
325
+ it('should gather multiplications based on the specified key', () => {
326
+ const dataList = [
327
+ { _id: 1, name: 'Alice' },
328
+ { _id: 2, name: 'Bob' },
329
+ { _id: 1, name: 'Charlie' },
330
+ { _id: 3, name: 'David' },
331
+ { _id: 2, name: 'Eve' },
332
+ { _id: 3, name: 'Frank' },
333
+ ];
334
+
335
+ const expectedMultiplications = [
336
+ [
337
+ { _id: 1, name: 'Alice' },
338
+ { _id: 1, name: 'Charlie' },
339
+ ],
340
+ [
341
+ { _id: 2, name: 'Bob' },
342
+ { _id: 2, name: 'Eve' },
343
+ ],
344
+ [
345
+ { _id: 3, name: 'David' },
346
+ { _id: 3, name: 'Frank' },
347
+ ],
348
+ ];
349
+
350
+ expect(DyFM_Array.gatherMultiplications(dataList)).toEqual(expectedMultiplications);
351
+ });
352
+ });
39
353
  });
@@ -89,10 +89,10 @@ export class DyFM_Array {
89
89
  let randomIndex: number;
90
90
 
91
91
  while (0 < currentIndex) {
92
- randomIndex = Math.floor(Math.random() * currentIndex);
93
92
  currentIndex--;
94
-
95
- [ array[currentIndex], array[randomIndex] ] = [ array[randomIndex], array[currentIndex] ];
93
+
94
+ randomIndex = Math.floor(Math.random() * (array.length - 1));
95
+ this.swap(array, currentIndex, randomIndex);
96
96
  }
97
97
 
98
98
  return array;
@@ -0,0 +1,79 @@
1
+
2
+ import { DyFM_BoxBounds } from './box-bounds.util';
3
+ import { DyFM_Vector2_Util } from './vector2.util';
4
+
5
+ xdescribe('DyFM_BoxBounds', () => {
6
+ let boxBounds: DyFM_BoxBounds;
7
+ const mockPosition = new DyFM_Vector2_Util({ x: 0, y: 0 });
8
+ const mockSize = new DyFM_Vector2_Util({ x: 10, y: 10 });
9
+
10
+ beforeEach(() => {
11
+ boxBounds = new DyFM_BoxBounds(mockPosition, mockSize);
12
+ });
13
+
14
+ it('should set position correctly ()', () => {
15
+ const newPosition = new DyFM_Vector2_Util({ x: 5, y: 5 });
16
+
17
+ boxBounds.pos = newPosition;
18
+ expect(boxBounds.pos).toEqual(newPosition);
19
+ });
20
+
21
+ it('should get position correctly', () => {
22
+ const expectedPosition = new DyFM_Vector2_Util({ x: 5, y: 5 });
23
+
24
+ expect(boxBounds.pos).toEqual(expectedPosition);
25
+ });
26
+
27
+ it('should set size correctly', () => {
28
+ const newSize = new DyFM_Vector2_Util({ x: 20, y: 20 });
29
+
30
+ boxBounds.size = newSize;
31
+ expect(boxBounds.size).toEqual(newSize);
32
+ });
33
+
34
+ it('should get size correctly', () => {
35
+ const expectedSize = new DyFM_Vector2_Util({ x: 20, y: 20 });
36
+
37
+ expect(boxBounds.size).toEqual(expectedSize);
38
+ });
39
+
40
+ it('should calculate center correctly', () => {
41
+ const expectedCenter = new DyFM_Vector2_Util({ x: 10, y: 10 });
42
+
43
+ boxBounds['calcCenter']();
44
+ expect(boxBounds.center).toEqual(expectedCenter);
45
+ });
46
+
47
+ it('should calculate center margin correctly', () => {
48
+ const expectedCenterMargin = new DyFM_Vector2_Util({ x: -5, y: -5 });
49
+
50
+ boxBounds['calcCenter']();
51
+ expect(boxBounds.centerMargin).toEqual(expectedCenterMargin);
52
+ });
53
+
54
+ it('should return true for constructed method', () => {
55
+ expect(boxBounds.constructed()).toBe(true);
56
+ });
57
+
58
+ it('should throw error when newValues has undefined position', () => {
59
+ expect(() => {
60
+ boxBounds.newValues(undefined, { x: 10, y: 10 });
61
+ }).toThrow(Error);
62
+ });
63
+
64
+ it('should throw error when newValues has undefined size', () => {
65
+ expect(() => {
66
+ boxBounds.newValues({ x: 0, y: 0 }, undefined);
67
+ }).toThrow(Error);
68
+ });
69
+
70
+ it('should clone and return a new instance', () => {
71
+ const clonedBoxBounds = boxBounds.clone();
72
+
73
+ expect(clonedBoxBounds).toBeInstanceOf(DyFM_BoxBounds);
74
+ expect(clonedBoxBounds).toEqual(boxBounds);
75
+ });
76
+
77
+ // Add more test cases as needed
78
+
79
+ });
@@ -10,7 +10,7 @@ import { DyFM_Vector2_Util } from './vector2.util';
10
10
  * (if this is not true, report it as a bug)
11
11
  */
12
12
  export class DyFM_BoxBounds {
13
- private _pos: DyFM_Vector2_Util;
13
+ private readonly _pos: DyFM_Vector2_Util;
14
14
  set pos(value: DyFM_Vector2) {
15
15
  this._pos.newValues(value);
16
16
 
@@ -20,7 +20,7 @@ export class DyFM_BoxBounds {
20
20
  return this._pos;
21
21
  }
22
22
 
23
- private _size: DyFM_Vector2_Util;
23
+ private readonly _size: DyFM_Vector2_Util;
24
24
  set size(value: DyFM_Vector2) {
25
25
  this._size.newValues(value);
26
26
 
@@ -29,7 +29,7 @@ export class DyFM_DataProperty_Settings<T>{
29
29
  minlength?: number;
30
30
  maxlength?: number;
31
31
 
32
- subObjectParams?: DyFM_DataProperties<T>;
32
+ subObjectParams?: DyFM_DataProperties<any>;
33
33
 
34
34
  additionalValidators?: ((data: any/* : T[K] */) => void)[];
35
35
  }
@@ -625,7 +625,7 @@ Unofficial codes
625
625
  * fs
626
626
  * daf
627
627
  * d as
628
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
628
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
629
629
  * a
630
630
  * @beta
631
631
  * v
@@ -633,7 +633,7 @@ Unofficial codes
633
633
  * fs
634
634
  * daf
635
635
  * d as
636
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
636
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
637
637
  * b
638
638
  * @decorator
639
639
  * v
@@ -641,7 +641,7 @@ Unofficial codes
641
641
  * fs
642
642
  * daf
643
643
  * d as
644
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
644
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
645
645
  * dc
646
646
  * @deprecated
647
647
  * v
@@ -649,7 +649,7 @@ Unofficial codes
649
649
  * fs
650
650
  * daf
651
651
  * d as
652
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
652
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
653
653
  * dp
654
654
  * @defaultValue
655
655
  * v
@@ -657,7 +657,7 @@ Unofficial codes
657
657
  * fs
658
658
  * daf
659
659
  * d as
660
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
660
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
661
661
  * dv
662
662
  * @eventProperty
663
663
  * v
@@ -665,7 +665,7 @@ Unofficial codes
665
665
  * fs
666
666
  * daf
667
667
  * d as
668
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
668
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
669
669
  * ep
670
670
  * @example
671
671
  * v
@@ -673,7 +673,7 @@ Unofficial codes
673
673
  * fs
674
674
  * daf
675
675
  * d as
676
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
676
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
677
677
  * ex
678
678
  * @experimental
679
679
  * v
@@ -681,7 +681,7 @@ Unofficial codes
681
681
  * fs
682
682
  * daf
683
683
  * d as
684
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
684
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
685
685
  * exp
686
686
  * @inheritDoc
687
687
  * v
@@ -689,7 +689,7 @@ Unofficial codes
689
689
  * fs
690
690
  * daf
691
691
  * d as
692
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
692
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
693
693
  * in
694
694
  * @internal
695
695
  * v
@@ -697,7 +697,7 @@ Unofficial codes
697
697
  * fs
698
698
  * daf
699
699
  * d as
700
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
700
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
701
701
  * int
702
702
  * @label
703
703
  * v
@@ -705,7 +705,7 @@ Unofficial codes
705
705
  * fs
706
706
  * daf
707
707
  * d as
708
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
708
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
709
709
  * lab
710
710
  * @link
711
711
  * v
@@ -713,7 +713,7 @@ Unofficial codes
713
713
  * fs
714
714
  * daf
715
715
  * d as
716
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
716
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
717
717
  * li
718
718
  * @override
719
719
  * v
@@ -721,13 +721,13 @@ Unofficial codes
721
721
  * fs
722
722
  * daf
723
723
  * d as
724
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
724
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
725
725
  * v
726
726
  * sadfas d
727
727
  * fs
728
728
  * daf
729
729
  * d as
730
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
730
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
731
731
  * ov
732
732
  * @packageDocumentation
733
733
  * v
@@ -735,7 +735,7 @@ Unofficial codes
735
735
  * fs
736
736
  * daf
737
737
  * d as
738
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
738
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
739
739
  * pad
740
740
  * @param
741
741
  * v
@@ -743,7 +743,7 @@ Unofficial codes
743
743
  * fs
744
744
  * daf
745
745
  * d as
746
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
746
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
747
747
  * par
748
748
  * @privateRemarks
749
749
  * v
@@ -751,7 +751,7 @@ Unofficial codes
751
751
  * fs
752
752
  * daf
753
753
  * d as
754
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
754
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
755
755
  * pr
756
756
  * @public
757
757
  * v
@@ -759,7 +759,7 @@ Unofficial codes
759
759
  * fs
760
760
  * daf
761
761
  * d as
762
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
762
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
763
763
  * p
764
764
  * @readonly
765
765
  * v
@@ -767,7 +767,7 @@ Unofficial codes
767
767
  * fs
768
768
  * daf
769
769
  * d as
770
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
770
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
771
771
  * re
772
772
  * @remarks
773
773
  * v
@@ -775,7 +775,7 @@ Unofficial codes
775
775
  * fs
776
776
  * daf
777
777
  * d as
778
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
778
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
779
779
  * rem
780
780
  * @returns
781
781
  * v
@@ -783,7 +783,7 @@ Unofficial codes
783
783
  * fs
784
784
  * daf
785
785
  * d as
786
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
786
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
787
787
  * ret
788
788
  * @sealed
789
789
  * v
@@ -791,7 +791,7 @@ Unofficial codes
791
791
  * fs
792
792
  * daf
793
793
  * d as
794
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
794
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
795
795
  * sea
796
796
  * @see
797
797
  * v
@@ -799,7 +799,7 @@ Unofficial codes
799
799
  * fs
800
800
  * daf
801
801
  * d as
802
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
802
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
803
803
  * see
804
804
  * @throws
805
805
  * v
@@ -807,7 +807,7 @@ Unofficial codes
807
807
  * fs
808
808
  * daf
809
809
  * d as
810
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
810
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
811
811
  * th
812
812
  * @typeParam
813
813
  * v
@@ -815,7 +815,7 @@ Unofficial codes
815
815
  * fs
816
816
  * daf
817
817
  * d as
818
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
818
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
819
819
  * typ
820
820
  * @virtual
821
821
  * v
@@ -823,7 +823,7 @@ Unofficial codes
823
823
  * fs
824
824
  * daf
825
825
  * d as
826
- * dafs // asd sa `sadf ` sadf asd******* asdf asd f asd
826
+ * dafs // asd"" sa `sadf ` sadf asd******* asdf asd"" f asd
827
827
  *
828
828
  *
829
829
  * @see {@link http://example.com/@internal LINK}