linked-list-typed 1.38.2 → 1.38.4

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 (39) hide show
  1. package/.dependency-cruiser.js +422 -422
  2. package/.eslintrc.js +59 -59
  3. package/.prettierrc.js +14 -14
  4. package/README.md +15 -3
  5. package/coverage/clover.xml +11 -7
  6. package/coverage/coverage-final.json +165 -1
  7. package/coverage/coverage-summary.json +59 -2
  8. package/coverage/lcov-report/base.css +278 -99
  9. package/coverage/lcov-report/index.html +69 -65
  10. package/coverage/lcov-report/index.ts.html +39 -36
  11. package/coverage/lcov-report/sorter.js +15 -5
  12. package/dist/data-structures/binary-tree/binary-tree.d.ts +9 -9
  13. package/dist/data-structures/binary-tree/bst.d.ts +4 -4
  14. package/dist/types/data-structures/binary-tree/binary-tree.d.ts +1 -1
  15. package/dist/types/helpers.d.ts +1 -1
  16. package/jest.config.js +6 -6
  17. package/package.json +4 -1
  18. package/src/data-structures/binary-tree/avl-tree.ts +1 -1
  19. package/src/data-structures/binary-tree/binary-indexed-tree.ts +1 -1
  20. package/src/data-structures/binary-tree/binary-tree.ts +21 -21
  21. package/src/data-structures/binary-tree/bst.ts +7 -7
  22. package/src/data-structures/binary-tree/tree-multiset.ts +2 -1
  23. package/src/data-structures/graph/abstract-graph.ts +11 -10
  24. package/src/data-structures/graph/directed-graph.ts +2 -1
  25. package/src/data-structures/graph/undirected-graph.ts +5 -4
  26. package/src/data-structures/hash/hash-map.ts +1 -1
  27. package/src/data-structures/hash/tree-map.ts +1 -2
  28. package/src/data-structures/hash/tree-set.ts +1 -2
  29. package/src/data-structures/linked-list/singly-linked-list.ts +1 -1
  30. package/src/data-structures/matrix/matrix.ts +1 -1
  31. package/src/data-structures/matrix/vector2d.ts +1 -2
  32. package/src/data-structures/queue/deque.ts +4 -5
  33. package/src/data-structures/queue/queue.ts +1 -1
  34. package/src/types/data-structures/binary-tree/binary-tree.ts +1 -1
  35. package/src/types/data-structures/matrix/navigator.ts +1 -1
  36. package/src/types/helpers.ts +1 -1
  37. package/src/types/utils/utils.ts +1 -1
  38. package/src/types/utils/validate-type.ts +2 -2
  39. package/tsconfig.json +1 -2
@@ -1,90 +1,163 @@
1
1
  body, html {
2
- margin:0; padding: 0;
3
- height: 100%;
2
+ margin: 0;
3
+ padding: 0;
4
+ height: 100%;
4
5
  }
6
+
5
7
  body {
6
8
  font-family: Helvetica Neue, Helvetica, Arial;
7
9
  font-size: 14px;
8
- color:#333;
10
+ color: #333;
11
+ }
12
+
13
+ .small {
14
+ font-size: 12px;
9
15
  }
10
- .small { font-size: 12px; }
16
+
11
17
  *, *:after, *:before {
12
- -webkit-box-sizing:border-box;
13
- -moz-box-sizing:border-box;
14
- box-sizing:border-box;
15
- }
16
- h1 { font-size: 20px; margin: 0;}
17
- h2 { font-size: 14px; }
18
+ -webkit-box-sizing: border-box;
19
+ -moz-box-sizing: border-box;
20
+ box-sizing: border-box;
21
+ }
22
+
23
+ h1 {
24
+ font-size: 20px;
25
+ margin: 0;
26
+ }
27
+
28
+ h2 {
29
+ font-size: 14px;
30
+ }
31
+
18
32
  pre {
19
33
  font: 12px/1.4 Consolas, "Liberation Mono", Menlo, Courier, monospace;
20
34
  margin: 0;
21
35
  padding: 0;
22
36
  -moz-tab-size: 2;
23
- -o-tab-size: 2;
37
+ -o-tab-size: 2;
24
38
  tab-size: 2;
25
39
  }
26
- a { color:#0074D9; text-decoration:none; }
27
- a:hover { text-decoration:underline; }
28
- .strong { font-weight: bold; }
29
- .space-top1 { padding: 10px 0 0 0; }
30
- .pad2y { padding: 20px 0; }
31
- .pad1y { padding: 10px 0; }
32
- .pad2x { padding: 0 20px; }
33
- .pad2 { padding: 20px; }
34
- .pad1 { padding: 10px; }
35
- .space-left2 { padding-left:55px; }
36
- .space-right2 { padding-right:20px; }
37
- .center { text-align:center; }
38
- .clearfix { display:block; }
40
+
41
+ a {
42
+ color: #0074D9;
43
+ text-decoration: none;
44
+ }
45
+
46
+ a:hover {
47
+ text-decoration: underline;
48
+ }
49
+
50
+ .strong {
51
+ font-weight: bold;
52
+ }
53
+
54
+ .space-top1 {
55
+ padding: 10px 0 0 0;
56
+ }
57
+
58
+ .pad2y {
59
+ padding: 20px 0;
60
+ }
61
+
62
+ .pad1y {
63
+ padding: 10px 0;
64
+ }
65
+
66
+ .pad2x {
67
+ padding: 0 20px;
68
+ }
69
+
70
+ .pad2 {
71
+ padding: 20px;
72
+ }
73
+
74
+ .pad1 {
75
+ padding: 10px;
76
+ }
77
+
78
+ .space-left2 {
79
+ padding-left: 55px;
80
+ }
81
+
82
+ .space-right2 {
83
+ padding-right: 20px;
84
+ }
85
+
86
+ .center {
87
+ text-align: center;
88
+ }
89
+
90
+ .clearfix {
91
+ display: block;
92
+ }
93
+
39
94
  .clearfix:after {
40
- content:'';
41
- display:block;
42
- height:0;
43
- clear:both;
44
- visibility:hidden;
45
- }
46
- .fl { float: left; }
47
- @media only screen and (max-width:640px) {
48
- .col3 { width:100%; max-width:100%; }
49
- .hide-mobile { display:none!important; }
95
+ content: '';
96
+ display: block;
97
+ height: 0;
98
+ clear: both;
99
+ visibility: hidden;
100
+ }
101
+
102
+ .fl {
103
+ float: left;
104
+ }
105
+
106
+ @media only screen and (max-width: 640px) {
107
+ .col3 {
108
+ width: 100%;
109
+ max-width: 100%;
110
+ }
111
+
112
+ .hide-mobile {
113
+ display: none !important;
114
+ }
50
115
  }
51
116
 
52
117
  .quiet {
53
- color: #7f7f7f;
54
- color: rgba(0,0,0,0.5);
118
+ color: #7f7f7f;
119
+ color: rgba(0, 0, 0, 0.5);
120
+ }
121
+
122
+ .quiet a {
123
+ opacity: 0.7;
55
124
  }
56
- .quiet a { opacity: 0.7; }
57
125
 
58
126
  .fraction {
59
- font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace;
60
- font-size: 10px;
61
- color: #555;
62
- background: #E8E8E8;
63
- padding: 4px 5px;
64
- border-radius: 3px;
65
- vertical-align: middle;
127
+ font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace;
128
+ font-size: 10px;
129
+ color: #555;
130
+ background: #E8E8E8;
131
+ padding: 4px 5px;
132
+ border-radius: 3px;
133
+ vertical-align: middle;
134
+ }
135
+
136
+ div.path a:link, div.path a:visited {
137
+ color: #333;
66
138
  }
67
139
 
68
- div.path a:link, div.path a:visited { color: #333; }
69
140
  table.coverage {
70
- border-collapse: collapse;
71
- margin: 10px 0 0 0;
72
- padding: 0;
141
+ border-collapse: collapse;
142
+ margin: 10px 0 0 0;
143
+ padding: 0;
73
144
  }
74
145
 
75
146
  table.coverage td {
76
- margin: 0;
77
- padding: 0;
78
- vertical-align: top;
147
+ margin: 0;
148
+ padding: 0;
149
+ vertical-align: top;
79
150
  }
151
+
80
152
  table.coverage td.line-count {
81
153
  text-align: right;
82
154
  padding: 0 5px 0 20px;
83
155
  }
156
+
84
157
  table.coverage td.line-coverage {
85
158
  text-align: right;
86
159
  padding-right: 10px;
87
- min-width:20px;
160
+ min-width: 20px;
88
161
  }
89
162
 
90
163
  table.coverage td span.cline-any {
@@ -92,6 +165,7 @@ table.coverage td span.cline-any {
92
165
  padding: 0 5px;
93
166
  width: 100%;
94
167
  }
168
+
95
169
  .missing-if-branch {
96
170
  display: inline-block;
97
171
  margin-right: 5px;
@@ -110,33 +184,70 @@ table.coverage td span.cline-any {
110
184
  background: #ccc;
111
185
  color: white;
112
186
  }
187
+
113
188
  .missing-if-branch .typ, .skip-if-branch .typ {
114
189
  color: inherit !important;
115
190
  }
191
+
116
192
  .coverage-summary {
117
- border-collapse: collapse;
118
- width: 100%;
119
- }
120
- .coverage-summary tr { border-bottom: 1px solid #bbb; }
121
- .keyline-all { border: 1px solid #ddd; }
122
- .coverage-summary td, .coverage-summary th { padding: 10px; }
123
- .coverage-summary tbody { border: 1px solid #bbb; }
124
- .coverage-summary td { border-right: 1px solid #bbb; }
125
- .coverage-summary td:last-child { border-right: none; }
193
+ border-collapse: collapse;
194
+ width: 100%;
195
+ }
196
+
197
+ .coverage-summary tr {
198
+ border-bottom: 1px solid #bbb;
199
+ }
200
+
201
+ .keyline-all {
202
+ border: 1px solid #ddd;
203
+ }
204
+
205
+ .coverage-summary td, .coverage-summary th {
206
+ padding: 10px;
207
+ }
208
+
209
+ .coverage-summary tbody {
210
+ border: 1px solid #bbb;
211
+ }
212
+
213
+ .coverage-summary td {
214
+ border-right: 1px solid #bbb;
215
+ }
216
+
217
+ .coverage-summary td:last-child {
218
+ border-right: none;
219
+ }
220
+
126
221
  .coverage-summary th {
127
- text-align: left;
128
- font-weight: normal;
129
- white-space: nowrap;
222
+ text-align: left;
223
+ font-weight: normal;
224
+ white-space: nowrap;
130
225
  }
131
- .coverage-summary th.file { border-right: none !important; }
132
- .coverage-summary th.pct { }
226
+
227
+ .coverage-summary th.file {
228
+ border-right: none !important;
229
+ }
230
+
231
+ .coverage-summary th.pct {
232
+ }
233
+
133
234
  .coverage-summary th.pic,
134
235
  .coverage-summary th.abs,
135
236
  .coverage-summary td.pct,
136
- .coverage-summary td.abs { text-align: right; }
137
- .coverage-summary td.file { white-space: nowrap; }
138
- .coverage-summary td.pic { min-width: 120px !important; }
139
- .coverage-summary tfoot td { }
237
+ .coverage-summary td.abs {
238
+ text-align: right;
239
+ }
240
+
241
+ .coverage-summary td.file {
242
+ white-space: nowrap;
243
+ }
244
+
245
+ .coverage-summary td.pic {
246
+ min-width: 120px !important;
247
+ }
248
+
249
+ .coverage-summary tfoot td {
250
+ }
140
251
 
141
252
  .coverage-summary .sorter {
142
253
  height: 10px;
@@ -145,44 +256,100 @@ table.coverage td span.cline-any {
145
256
  margin-left: 0.5em;
146
257
  background: url(sort-arrow-sprite.png) no-repeat scroll 0 0 transparent;
147
258
  }
259
+
148
260
  .coverage-summary .sorted .sorter {
149
261
  background-position: 0 -20px;
150
262
  }
263
+
151
264
  .coverage-summary .sorted-desc .sorter {
152
265
  background-position: 0 -10px;
153
266
  }
154
- .status-line { height: 10px; }
267
+
268
+ .status-line {
269
+ height: 10px;
270
+ }
271
+
155
272
  /* yellow */
156
- .cbranch-no { background: yellow !important; color: #111; }
273
+ .cbranch-no {
274
+ background: yellow !important;
275
+ color: #111;
276
+ }
277
+
157
278
  /* dark red */
158
- .red.solid, .status-line.low, .low .cover-fill { background:#C21F39 }
159
- .low .chart { border:1px solid #C21F39 }
279
+ .red.solid, .status-line.low, .low .cover-fill {
280
+ background: #C21F39
281
+ }
282
+
283
+ .low .chart {
284
+ border: 1px solid #C21F39
285
+ }
286
+
160
287
  .highlighted,
161
- .highlighted .cstat-no, .highlighted .fstat-no, .highlighted .cbranch-no{
162
- background: #C21F39 !important;
288
+ .highlighted .cstat-no, .highlighted .fstat-no, .highlighted .cbranch-no {
289
+ background: #C21F39 !important;
163
290
  }
291
+
164
292
  /* medium red */
165
- .cstat-no, .fstat-no, .cbranch-no, .cbranch-no { background:#F6C6CE }
293
+ .cstat-no, .fstat-no, .cbranch-no, .cbranch-no {
294
+ background: #F6C6CE
295
+ }
296
+
166
297
  /* light red */
167
- .low, .cline-no { background:#FCE1E5 }
298
+ .low, .cline-no {
299
+ background: #FCE1E5
300
+ }
301
+
168
302
  /* light green */
169
- .high, .cline-yes { background:rgb(230,245,208) }
303
+ .high, .cline-yes {
304
+ background: rgb(230, 245, 208)
305
+ }
306
+
170
307
  /* medium green */
171
- .cstat-yes { background:rgb(161,215,106) }
308
+ .cstat-yes {
309
+ background: rgb(161, 215, 106)
310
+ }
311
+
172
312
  /* dark green */
173
- .status-line.high, .high .cover-fill { background:rgb(77,146,33) }
174
- .high .chart { border:1px solid rgb(77,146,33) }
313
+ .status-line.high, .high .cover-fill {
314
+ background: rgb(77, 146, 33)
315
+ }
316
+
317
+ .high .chart {
318
+ border: 1px solid rgb(77, 146, 33)
319
+ }
320
+
175
321
  /* dark yellow (gold) */
176
- .status-line.medium, .medium .cover-fill { background: #f9cd0b; }
177
- .medium .chart { border:1px solid #f9cd0b; }
322
+ .status-line.medium, .medium .cover-fill {
323
+ background: #f9cd0b;
324
+ }
325
+
326
+ .medium .chart {
327
+ border: 1px solid #f9cd0b;
328
+ }
329
+
178
330
  /* light yellow */
179
- .medium { background: #fff4c2; }
331
+ .medium {
332
+ background: #fff4c2;
333
+ }
180
334
 
181
- .cstat-skip { background: #ddd; color: #111; }
182
- .fstat-skip { background: #ddd; color: #111 !important; }
183
- .cbranch-skip { background: #ddd !important; color: #111; }
335
+ .cstat-skip {
336
+ background: #ddd;
337
+ color: #111;
338
+ }
339
+
340
+ .fstat-skip {
341
+ background: #ddd;
342
+ color: #111 !important;
343
+ }
344
+
345
+ .cbranch-skip {
346
+ background: #ddd !important;
347
+ color: #111;
348
+ }
184
349
 
185
- span.cline-neutral { background: #eaeaea; }
350
+ span.cline-neutral {
351
+ background: #eaeaea;
352
+ }
186
353
 
187
354
  .coverage-summary td.empty {
188
355
  opacity: .5;
@@ -193,32 +360,44 @@ span.cline-neutral { background: #eaeaea; }
193
360
  }
194
361
 
195
362
  .cover-fill, .cover-empty {
196
- display:inline-block;
197
- height: 12px;
363
+ display: inline-block;
364
+ height: 12px;
198
365
  }
366
+
199
367
  .chart {
200
- line-height: 0;
368
+ line-height: 0;
201
369
  }
370
+
202
371
  .cover-empty {
203
372
  background: white;
204
373
  }
374
+
205
375
  .cover-full {
206
376
  border-right: none !important;
207
377
  }
378
+
208
379
  pre.prettyprint {
209
380
  border: none !important;
210
381
  padding: 0 !important;
211
382
  margin: 0 !important;
212
383
  }
213
- .com { color: #999 !important; }
214
- .ignore-none { color: #999; font-weight: normal; }
384
+
385
+ .com {
386
+ color: #999 !important;
387
+ }
388
+
389
+ .ignore-none {
390
+ color: #999;
391
+ font-weight: normal;
392
+ }
215
393
 
216
394
  .wrapper {
217
- min-height: 100%;
218
- height: auto !important;
219
- height: 100%;
220
- margin: 0 auto -48px;
395
+ min-height: 100%;
396
+ height: auto !important;
397
+ height: 100%;
398
+ margin: 0 auto -48px;
221
399
  }
400
+
222
401
  .footer, .push {
223
- height: 48px;
402
+ height: 48px;
224
403
  }
@@ -1,116 +1,120 @@
1
-
2
1
  <!doctype html>
3
2
  <html lang="en">
4
3
 
5
4
  <head>
6
5
  <title>Code coverage report for All files</title>
7
- <meta charset="utf-8" />
8
- <link rel="stylesheet" href="prettify.css" />
9
- <link rel="stylesheet" href="base.css" />
10
- <link rel="shortcut icon" type="image/x-icon" href="favicon.png" />
11
- <meta name="viewport" content="width=device-width, initial-scale=1" />
6
+ <meta charset="utf-8"/>
7
+ <link href="prettify.css" rel="stylesheet"/>
8
+ <link href="base.css" rel="stylesheet"/>
9
+ <link href="favicon.png" rel="shortcut icon" type="image/x-icon"/>
10
+ <meta content="width=device-width, initial-scale=1" name="viewport"/>
12
11
  <style type='text/css'>
13
12
  .coverage-summary .sorter {
14
13
  background-image: url(sort-arrow-sprite.png);
15
14
  }
16
15
  </style>
17
16
  </head>
18
-
17
+
19
18
  <body>
20
19
  <div class='wrapper'>
21
20
  <div class='pad1'>
22
21
  <h1>All files</h1>
23
22
  <div class='clearfix'>
24
-
23
+
25
24
  <div class='fl pad1y space-right2'>
26
25
  <span class="strong">100% </span>
27
26
  <span class="quiet">Statements</span>
28
27
  <span class='fraction'>5/5</span>
29
28
  </div>
30
-
31
-
29
+
30
+
32
31
  <div class='fl pad1y space-right2'>
33
32
  <span class="strong">100% </span>
34
33
  <span class="quiet">Branches</span>
35
34
  <span class='fraction'>0/0</span>
36
35
  </div>
37
-
38
-
36
+
37
+
39
38
  <div class='fl pad1y space-right2'>
40
39
  <span class="strong">25% </span>
41
40
  <span class="quiet">Functions</span>
42
41
  <span class='fraction'>1/4</span>
43
42
  </div>
44
-
45
-
43
+
44
+
46
45
  <div class='fl pad1y space-right2'>
47
46
  <span class="strong">100% </span>
48
47
  <span class="quiet">Lines</span>
49
48
  <span class='fraction'>1/1</span>
50
49
  </div>
51
-
52
-
50
+
51
+
53
52
  </div>
54
53
  <p class="quiet">
55
- Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for the previous block.
54
+ Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for
55
+ the previous block.
56
56
  </p>
57
57
  <template id="filterTemplate">
58
58
  <div class="quiet">
59
59
  Filter:
60
- <input oninput="onInput()" type="search" id="fileSearch">
60
+ <input id="fileSearch" oninput="onInput()" type="search">
61
61
  </div>
62
62
  </template>
63
63
  </div>
64
64
  <div class='status-line high'></div>
65
65
  <div class="pad1">
66
- <table class="coverage-summary">
67
- <thead>
68
- <tr>
69
- <th data-col="file" data-fmt="html" data-html="true" class="file">File</th>
70
- <th data-col="pic" data-type="number" data-fmt="html" data-html="true" class="pic"></th>
71
- <th data-col="statements" data-type="number" data-fmt="pct" class="pct">Statements</th>
72
- <th data-col="statements_raw" data-type="number" data-fmt="html" class="abs"></th>
73
- <th data-col="branches" data-type="number" data-fmt="pct" class="pct">Branches</th>
74
- <th data-col="branches_raw" data-type="number" data-fmt="html" class="abs"></th>
75
- <th data-col="functions" data-type="number" data-fmt="pct" class="pct">Functions</th>
76
- <th data-col="functions_raw" data-type="number" data-fmt="html" class="abs"></th>
77
- <th data-col="lines" data-type="number" data-fmt="pct" class="pct">Lines</th>
78
- <th data-col="lines_raw" data-type="number" data-fmt="html" class="abs"></th>
79
- </tr>
80
- </thead>
81
- <tbody><tr>
82
- <td class="file high" data-value="index.ts"><a href="index.ts.html">index.ts</a></td>
83
- <td data-value="100" class="pic high">
84
- <div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
85
- </td>
86
- <td data-value="100" class="pct high">100%</td>
87
- <td data-value="5" class="abs high">5/5</td>
88
- <td data-value="100" class="pct high">100%</td>
89
- <td data-value="0" class="abs high">0/0</td>
90
- <td data-value="25" class="pct low">25%</td>
91
- <td data-value="4" class="abs low">1/4</td>
92
- <td data-value="100" class="pct high">100%</td>
93
- <td data-value="1" class="abs high">1/1</td>
94
- </tr>
66
+ <table class="coverage-summary">
67
+ <thead>
68
+ <tr>
69
+ <th class="file" data-col="file" data-fmt="html" data-html="true">File</th>
70
+ <th class="pic" data-col="pic" data-fmt="html" data-html="true" data-type="number"></th>
71
+ <th class="pct" data-col="statements" data-fmt="pct" data-type="number">Statements</th>
72
+ <th class="abs" data-col="statements_raw" data-fmt="html" data-type="number"></th>
73
+ <th class="pct" data-col="branches" data-fmt="pct" data-type="number">Branches</th>
74
+ <th class="abs" data-col="branches_raw" data-fmt="html" data-type="number"></th>
75
+ <th class="pct" data-col="functions" data-fmt="pct" data-type="number">Functions</th>
76
+ <th class="abs" data-col="functions_raw" data-fmt="html" data-type="number"></th>
77
+ <th class="pct" data-col="lines" data-fmt="pct" data-type="number">Lines</th>
78
+ <th class="abs" data-col="lines_raw" data-fmt="html" data-type="number"></th>
79
+ </tr>
80
+ </thead>
81
+ <tbody>
82
+ <tr>
83
+ <td class="file high" data-value="index.ts"><a href="index.ts.html">index.ts</a></td>
84
+ <td class="pic high" data-value="100">
85
+ <div class="chart">
86
+ <div class="cover-fill cover-full" style="width: 100%"></div>
87
+ <div class="cover-empty" style="width: 0%"></div>
88
+ </div>
89
+ </td>
90
+ <td class="pct high" data-value="100">100%</td>
91
+ <td class="abs high" data-value="5">5/5</td>
92
+ <td class="pct high" data-value="100">100%</td>
93
+ <td class="abs high" data-value="0">0/0</td>
94
+ <td class="pct low" data-value="25">25%</td>
95
+ <td class="abs low" data-value="4">1/4</td>
96
+ <td class="pct high" data-value="100">100%</td>
97
+ <td class="abs high" data-value="1">1/1</td>
98
+ </tr>
95
99
 
96
- </tbody>
97
- </table>
100
+ </tbody>
101
+ </table>
102
+ </div>
103
+ <div class='push'></div><!-- for sticky footer -->
104
+ </div><!-- /wrapper -->
105
+ <div class='footer quiet pad2 space-top1 center small'>
106
+ Code coverage generated by
107
+ <a href="https://istanbul.js.org/" rel="noopener noreferrer" target="_blank">istanbul</a>
108
+ at 2023-10-08T10:22:55.211Z
98
109
  </div>
99
- <div class='push'></div><!-- for sticky footer -->
100
- </div><!-- /wrapper -->
101
- <div class='footer quiet pad2 space-top1 center small'>
102
- Code coverage generated by
103
- <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
104
- at 2023-10-08T10:22:55.211Z
105
- </div>
106
- <script src="prettify.js"></script>
107
- <script>
108
- window.onload = function () {
109
- prettyPrint();
110
- };
111
- </script>
112
- <script src="sorter.js"></script>
113
- <script src="block-navigation.js"></script>
114
- </body>
110
+ <script src="prettify.js"></script>
111
+ <script>
112
+ window.onload = function () {
113
+ prettyPrint();
114
+ };
115
+ </script>
116
+ <script src="sorter.js"></script>
117
+ <script src="block-navigation.js"></script>
118
+ </body>
115
119
  </html>
116
120