ilib-lint 1.0.0

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 (89) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +231 -0
  3. package/docs/AnsiConsoleFormatter.html +467 -0
  4. package/docs/Formatter.html +577 -0
  5. package/docs/Formatter.js.html +135 -0
  6. package/docs/FormatterFactory.html +191 -0
  7. package/docs/FormatterFactory.js.html +109 -0
  8. package/docs/Parser.html +483 -0
  9. package/docs/Parser.js.html +122 -0
  10. package/docs/ParserFactory.js.html +109 -0
  11. package/docs/Plugin.html +847 -0
  12. package/docs/Plugin.js.html +168 -0
  13. package/docs/PluginManager.html +541 -0
  14. package/docs/PluginManager.js.html +125 -0
  15. package/docs/ResourceICUPlurals.html +278 -0
  16. package/docs/ResourceQuoteStyle.html +278 -0
  17. package/docs/ResourceRegExpChecker.html +295 -0
  18. package/docs/ResourceUniqueKeys.html +278 -0
  19. package/docs/Result.html +263 -0
  20. package/docs/Result.js.html +130 -0
  21. package/docs/Rule.html +774 -0
  22. package/docs/Rule.js.html +230 -0
  23. package/docs/RuleSet.html +760 -0
  24. package/docs/RuleSet.js.html +153 -0
  25. package/docs/SourceFile.html +826 -0
  26. package/docs/SourceFile.js.html +232 -0
  27. package/docs/XliffParser.html +396 -0
  28. package/docs/XliffPlugin.html +472 -0
  29. package/docs/fonts/Montserrat/Montserrat-Bold.eot +0 -0
  30. package/docs/fonts/Montserrat/Montserrat-Bold.ttf +0 -0
  31. package/docs/fonts/Montserrat/Montserrat-Bold.woff +0 -0
  32. package/docs/fonts/Montserrat/Montserrat-Bold.woff2 +0 -0
  33. package/docs/fonts/Montserrat/Montserrat-Regular.eot +0 -0
  34. package/docs/fonts/Montserrat/Montserrat-Regular.ttf +0 -0
  35. package/docs/fonts/Montserrat/Montserrat-Regular.woff +0 -0
  36. package/docs/fonts/Montserrat/Montserrat-Regular.woff2 +0 -0
  37. package/docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.eot +0 -0
  38. package/docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.svg +978 -0
  39. package/docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.ttf +0 -0
  40. package/docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.woff +0 -0
  41. package/docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.woff2 +0 -0
  42. package/docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.eot +0 -0
  43. package/docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.svg +1049 -0
  44. package/docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.ttf +0 -0
  45. package/docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.woff +0 -0
  46. package/docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.woff2 +0 -0
  47. package/docs/formatters_AnsiConsoleFormatter.js.html +147 -0
  48. package/docs/global.html +448 -0
  49. package/docs/ilibLint.md +1013 -0
  50. package/docs/index.html +81 -0
  51. package/docs/plugins_XliffParser.js.html +129 -0
  52. package/docs/plugins_XliffPlugin.js.html +129 -0
  53. package/docs/rules_ResourceICUPlurals.js.html +297 -0
  54. package/docs/rules_ResourceQuoteStyle.js.html +238 -0
  55. package/docs/rules_ResourceRegExpChecker.js.html +248 -0
  56. package/docs/rules_ResourceUniqueKeys.js.html +144 -0
  57. package/docs/scripts/collapse.js +20 -0
  58. package/docs/scripts/linenumber.js +25 -0
  59. package/docs/scripts/nav.js +12 -0
  60. package/docs/scripts/polyfill.js +4 -0
  61. package/docs/scripts/prettify/Apache-License-2.0.txt +202 -0
  62. package/docs/scripts/prettify/lang-css.js +2 -0
  63. package/docs/scripts/prettify/prettify.js +28 -0
  64. package/docs/scripts/search.js +83 -0
  65. package/docs/styles/jsdoc.css +765 -0
  66. package/docs/styles/prettify.css +79 -0
  67. package/docs/walk.js.html +214 -0
  68. package/log4js.json +21 -0
  69. package/package.json +83 -0
  70. package/src/Formatter.js +66 -0
  71. package/src/FormatterFactory.js +41 -0
  72. package/src/Parser.js +53 -0
  73. package/src/ParserFactory.js +41 -0
  74. package/src/Plugin.js +99 -0
  75. package/src/PluginManager.js +56 -0
  76. package/src/Result.js +62 -0
  77. package/src/Rule.js +162 -0
  78. package/src/RuleSet.js +84 -0
  79. package/src/SourceFile.js +163 -0
  80. package/src/formatters/AnsiConsoleFormatter.js +78 -0
  81. package/src/index.js +213 -0
  82. package/src/plugins/XliffParser.js +60 -0
  83. package/src/plugins/XliffPlugin.js +60 -0
  84. package/src/rules/ResourceICUPlurals.js +229 -0
  85. package/src/rules/ResourceQuoteStyle.js +170 -0
  86. package/src/rules/ResourceRegExpChecker.js +179 -0
  87. package/src/rules/ResourceUniqueKeys.js +76 -0
  88. package/src/rules/utils.js +78 -0
  89. package/src/walk.js +146 -0
@@ -0,0 +1,826 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+
5
+ <meta charset="utf-8">
6
+ <title>SourceFile - Documentation</title>
7
+
8
+
9
+ <script src="scripts/prettify/prettify.js"></script>
10
+ <script src="scripts/prettify/lang-css.js"></script>
11
+ <!--[if lt IE 9]>
12
+ <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
13
+ <![endif]-->
14
+ <link type="text/css" rel="stylesheet" href="styles/prettify.css">
15
+ <link type="text/css" rel="stylesheet" href="styles/jsdoc.css">
16
+ <script src="scripts/nav.js" defer></script>
17
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
18
+ </head>
19
+ <body>
20
+
21
+ <input type="checkbox" id="nav-trigger" class="nav-trigger" />
22
+ <label for="nav-trigger" class="navicon-button x">
23
+ <div class="navicon"></div>
24
+ </label>
25
+
26
+ <label for="nav-trigger" class="overlay"></label>
27
+
28
+ <nav >
29
+
30
+ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="AnsiConsoleFormatter.html">AnsiConsoleFormatter</a><ul class='methods'><li data-type='method'><a href="AnsiConsoleFormatter.html#format">format</a></li><li data-type='method'><a href="AnsiConsoleFormatter.html#getDescription">getDescription</a></li></ul></li><li><a href="Formatter.html">Formatter</a><ul class='methods'><li data-type='method'><a href="Formatter.html#format">format</a></li><li data-type='method'><a href="Formatter.html#getDescription">getDescription</a></li><li data-type='method'><a href="Formatter.html#getName">getName</a></li></ul></li><li><a href="FormatterFactory.html">FormatterFactory</a></li><li><a href="Parser.html">Parser</a><ul class='methods'><li data-type='method'><a href="Parser.html#getResources">getResources</a></li><li data-type='method'><a href="Parser.html#init">init</a></li><li data-type='method'><a href="Parser.html#parse">parse</a></li></ul></li><li><a href="Plugin.html">Plugin</a><ul class='methods'><li data-type='method'><a href="Plugin.html#getExtensions">getExtensions</a></li><li data-type='method'><a href="Plugin.html#getFormatters">getFormatters</a></li><li data-type='method'><a href="Plugin.html#getParsers">getParsers</a></li><li data-type='method'><a href="Plugin.html#getRules">getRules</a></li><li data-type='method'><a href="Plugin.html#getType">getType</a></li><li data-type='method'><a href="Plugin.html#init">init</a></li></ul></li><li><a href="PluginManager.html">PluginManager</a><ul class='methods'><li data-type='method'><a href="PluginManager.html#getHandlers">getHandlers</a></li><li data-type='method'><a href="PluginManager.html#load">load</a></li></ul></li><li><a href="ResourceICUPlurals.html">ResourceICUPlurals</a><ul class='methods'><li data-type='method'><a href="ResourceICUPlurals.html#match">match</a></li></ul></li><li><a href="ResourceQuoteStyle.html">ResourceQuoteStyle</a><ul class='methods'><li data-type='method'><a href="ResourceQuoteStyle.html#match">match</a></li></ul></li><li><a href="ResourceRegExpChecker.html">ResourceRegExpChecker</a><ul class='methods'><li data-type='method'><a href="ResourceRegExpChecker.html#match">match</a></li></ul></li><li><a href="ResourceUniqueKeys.html">ResourceUniqueKeys</a><ul class='methods'><li data-type='method'><a href="ResourceUniqueKeys.html#match">match</a></li></ul></li><li><a href="Result.html">Result</a></li><li><a href="Rule.html">Rule</a><ul class='methods'><li data-type='method'><a href="Rule.html#getDescription">getDescription</a></li><li data-type='method'><a href="Rule.html#getName">getName</a></li><li data-type='method'><a href="Rule.html#getRuleType">getRuleType</a></li><li data-type='method'><a href="Rule.html#match">match</a></li></ul></li><li><a href="RuleSet.html">RuleSet</a><ul class='methods'><li data-type='method'><a href="RuleSet.html#addRule">addRule</a></li><li data-type='method'><a href="RuleSet.html#getRule">getRule</a></li><li data-type='method'><a href="RuleSet.html#getRules">getRules</a></li><li data-type='method'><a href="RuleSet.html#getSize">getSize</a></li></ul></li><li><a href="SourceFile.html">SourceFile</a><ul class='methods'><li data-type='method'><a href="SourceFile.html#findIssues">findIssues</a></li><li data-type='method'><a href="SourceFile.html#getFilePath">getFilePath</a></li><li data-type='method'><a href="SourceFile.html#getLocaleFromPath">getLocaleFromPath</a></li><li data-type='method'><a href="SourceFile.html#getType">getType</a></li><li data-type='method'><a href="SourceFile.html#parse">parse</a></li></ul></li><li><a href="XliffParser.html">XliffParser</a><ul class='methods'><li data-type='method'><a href="XliffParser.html#getResources">getResources</a></li><li data-type='method'><a href="XliffParser.html#parse">parse</a></li></ul></li><li><a href="XliffPlugin.html">XliffPlugin</a><ul class='methods'><li data-type='method'><a href="XliffPlugin.html#getExtensions">getExtensions</a></li><li data-type='method'><a href="XliffPlugin.html#getParsers">getParsers</a></li><li data-type='method'><a href="XliffPlugin.html#getType">getType</a></li></ul></li></ul><h3>Global</h3><ul><li><a href="global.html#ParserFactory">ParserFactory</a></li><li><a href="global.html#walk">walk</a></li></ul>
31
+ </nav>
32
+
33
+ <div id="main">
34
+
35
+ <h1 class="page-title">SourceFile</h1>
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+ <section>
44
+
45
+ <header>
46
+
47
+ <h2>
48
+ SourceFile
49
+ </h2>
50
+
51
+ <div class="class-description usertext">Represent a set of ilib-lint rules.</div>
52
+
53
+
54
+ </header>
55
+
56
+ <article>
57
+
58
+ <div class="container-overview">
59
+
60
+
61
+
62
+
63
+ <h2>Constructor</h2>
64
+
65
+
66
+ <h4 class="name" id="SourceFile"><span class="type-signature"></span>new SourceFile<span class="signature">()</span><span class="type-signature"></span></h4>
67
+
68
+
69
+
70
+
71
+
72
+
73
+ <dl class="details">
74
+
75
+
76
+ <dt class="tag-source">Source:</dt>
77
+ <dd class="tag-source"><ul class="dummy"><li>
78
+ <a href="SourceFile.js.html">SourceFile.js</a>, <a href="SourceFile.js.html#line29">line 29</a>
79
+ </li></ul></dd>
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+
100
+
101
+
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+
110
+
111
+ </dl>
112
+
113
+
114
+
115
+
116
+
117
+ <div class="description usertext">
118
+ Construct a source file instance
119
+ The options parameter can contain any of the following properties:
120
+
121
+ - filePath {String} path to the file
122
+ - settings {Object} the settings from the ilib-lint config that
123
+ apply to this file
124
+ </div>
125
+
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+
152
+
153
+
154
+ </div>
155
+
156
+
157
+
158
+
159
+
160
+
161
+
162
+
163
+
164
+
165
+
166
+
167
+
168
+
169
+
170
+
171
+
172
+ <h3 class="subsection-title">Methods</h3>
173
+
174
+
175
+
176
+
177
+
178
+
179
+ <h4 class="name" id="findIssues"><span class="type-signature"></span>findIssues<span class="signature">(ruleset, locales)</span><span class="type-signature"> &rarr; {Array.&lt;<a href="Result.html">Result</a>>}</span></h4>
180
+
181
+
182
+
183
+
184
+
185
+
186
+ <dl class="details">
187
+
188
+
189
+ <dt class="tag-source">Source:</dt>
190
+ <dd class="tag-source"><ul class="dummy"><li>
191
+ <a href="SourceFile.js.html">SourceFile.js</a>, <a href="SourceFile.js.html#line117">line 117</a>
192
+ </li></ul></dd>
193
+
194
+
195
+
196
+
197
+
198
+
199
+
200
+
201
+
202
+
203
+
204
+
205
+
206
+
207
+
208
+
209
+
210
+
211
+
212
+
213
+
214
+
215
+
216
+
217
+
218
+
219
+
220
+
221
+
222
+
223
+
224
+ </dl>
225
+
226
+
227
+
228
+
229
+
230
+ <div class="description usertext">
231
+ Check the current file and return a list of issues found in this file.
232
+ This method parses the source file and applies each rule in turn
233
+ using the given locales.
234
+ </div>
235
+
236
+
237
+
238
+
239
+
240
+
241
+
242
+
243
+
244
+
245
+
246
+ <h5>Parameters:</h5>
247
+
248
+
249
+ <table class="params">
250
+ <thead>
251
+ <tr>
252
+
253
+ <th>Name</th>
254
+
255
+
256
+ <th>Type</th>
257
+
258
+
259
+
260
+
261
+
262
+ <th class="last">Description</th>
263
+ </tr>
264
+ </thead>
265
+
266
+ <tbody>
267
+
268
+
269
+ <tr>
270
+
271
+ <td class="name"><code>ruleset</code></td>
272
+
273
+
274
+ <td class="type">
275
+
276
+
277
+ <span class="param-type"><a href="RuleSet.html">RuleSet</a></span>
278
+
279
+
280
+
281
+ </td>
282
+
283
+
284
+
285
+
286
+
287
+ <td class="description last">a set of rules to apply</td>
288
+ </tr>
289
+
290
+
291
+
292
+ <tr>
293
+
294
+ <td class="name"><code>locales</code></td>
295
+
296
+
297
+ <td class="type">
298
+
299
+
300
+ <span class="param-type">Array.&lt;Locale></span>
301
+
302
+
303
+
304
+ </td>
305
+
306
+
307
+
308
+
309
+
310
+ <td class="description last">a set of locales to apply</td>
311
+ </tr>
312
+
313
+
314
+ </tbody>
315
+ </table>
316
+
317
+
318
+
319
+
320
+
321
+
322
+
323
+
324
+
325
+
326
+
327
+
328
+
329
+
330
+
331
+
332
+ <h5>Returns:</h5>
333
+
334
+
335
+ <div class="param-desc">
336
+ a list of natch results
337
+ </div>
338
+
339
+
340
+
341
+ <dl class="param-type">
342
+ <dt>
343
+ Type
344
+ </dt>
345
+ <dd>
346
+
347
+ <span class="param-type">Array.&lt;<a href="Result.html">Result</a>></span>
348
+
349
+
350
+ </dd>
351
+ </dl>
352
+
353
+
354
+
355
+
356
+
357
+
358
+
359
+
360
+
361
+
362
+ <h4 class="name" id="getFilePath"><span class="type-signature"></span>getFilePath<span class="signature">()</span><span class="type-signature"> &rarr; {String}</span></h4>
363
+
364
+
365
+
366
+
367
+
368
+
369
+ <dl class="details">
370
+
371
+
372
+ <dt class="tag-source">Source:</dt>
373
+ <dd class="tag-source"><ul class="dummy"><li>
374
+ <a href="SourceFile.js.html">SourceFile.js</a>, <a href="SourceFile.js.html#line51">line 51</a>
375
+ </li></ul></dd>
376
+
377
+
378
+
379
+
380
+
381
+
382
+
383
+
384
+
385
+
386
+
387
+
388
+
389
+
390
+
391
+
392
+
393
+
394
+
395
+
396
+
397
+
398
+
399
+
400
+
401
+
402
+
403
+
404
+
405
+
406
+
407
+ </dl>
408
+
409
+
410
+
411
+
412
+
413
+ <div class="description usertext">
414
+ Return the file path for this source file.
415
+ </div>
416
+
417
+
418
+
419
+
420
+
421
+
422
+
423
+
424
+
425
+
426
+
427
+
428
+
429
+
430
+
431
+
432
+
433
+
434
+
435
+
436
+
437
+
438
+
439
+
440
+
441
+ <h5>Returns:</h5>
442
+
443
+
444
+ <div class="param-desc">
445
+ the file path for this source file
446
+ </div>
447
+
448
+
449
+
450
+ <dl class="param-type">
451
+ <dt>
452
+ Type
453
+ </dt>
454
+ <dd>
455
+
456
+ <span class="param-type">String</span>
457
+
458
+
459
+ </dd>
460
+ </dl>
461
+
462
+
463
+
464
+
465
+
466
+
467
+
468
+
469
+
470
+
471
+ <h4 class="name" id="getLocaleFromPath"><span class="type-signature"></span>getLocaleFromPath<span class="signature">()</span><span class="type-signature"> &rarr; {String}</span></h4>
472
+
473
+
474
+
475
+
476
+
477
+
478
+ <dl class="details">
479
+
480
+
481
+ <dt class="tag-source">Source:</dt>
482
+ <dd class="tag-source"><ul class="dummy"><li>
483
+ <a href="SourceFile.js.html">SourceFile.js</a>, <a href="SourceFile.js.html#line62">line 62</a>
484
+ </li></ul></dd>
485
+
486
+
487
+
488
+
489
+
490
+
491
+
492
+
493
+
494
+
495
+
496
+
497
+
498
+
499
+
500
+
501
+
502
+
503
+
504
+
505
+
506
+
507
+
508
+
509
+
510
+
511
+
512
+
513
+
514
+
515
+
516
+ </dl>
517
+
518
+
519
+
520
+
521
+
522
+ <div class="description usertext">
523
+ Return the locale gleaned from the file path using the template in
524
+ the settings, or undefined if no locale could be found.
525
+ </div>
526
+
527
+
528
+
529
+
530
+
531
+
532
+
533
+
534
+
535
+
536
+
537
+
538
+
539
+
540
+
541
+
542
+
543
+
544
+
545
+
546
+
547
+
548
+
549
+
550
+
551
+ <h5>Returns:</h5>
552
+
553
+
554
+ <div class="param-desc">
555
+ the locale gleaned from the path, or the empty
556
+ string if no locale could be found.
557
+ </div>
558
+
559
+
560
+
561
+ <dl class="param-type">
562
+ <dt>
563
+ Type
564
+ </dt>
565
+ <dd>
566
+
567
+ <span class="param-type">String</span>
568
+
569
+
570
+ </dd>
571
+ </dl>
572
+
573
+
574
+
575
+
576
+
577
+
578
+
579
+
580
+
581
+
582
+ <h4 class="name" id="getType"><span class="type-signature"></span>getType<span class="signature">()</span><span class="type-signature"> &rarr; {String}</span></h4>
583
+
584
+
585
+
586
+
587
+
588
+
589
+ <dl class="details">
590
+
591
+
592
+ <dt class="tag-source">Source:</dt>
593
+ <dd class="tag-source"><ul class="dummy"><li>
594
+ <a href="SourceFile.js.html">SourceFile.js</a>, <a href="SourceFile.js.html#line104">line 104</a>
595
+ </li></ul></dd>
596
+
597
+
598
+
599
+
600
+
601
+
602
+
603
+
604
+
605
+
606
+
607
+
608
+
609
+
610
+
611
+
612
+
613
+
614
+
615
+
616
+
617
+
618
+
619
+
620
+
621
+
622
+
623
+
624
+
625
+
626
+
627
+ </dl>
628
+
629
+
630
+
631
+
632
+
633
+ <div class="description usertext">
634
+ Return the type of this file, resource or line.
635
+ </div>
636
+
637
+
638
+
639
+
640
+
641
+
642
+
643
+
644
+
645
+
646
+
647
+
648
+
649
+
650
+
651
+
652
+
653
+
654
+
655
+
656
+
657
+
658
+
659
+
660
+
661
+ <h5>Returns:</h5>
662
+
663
+
664
+ <div class="param-desc">
665
+ the type of this file
666
+ </div>
667
+
668
+
669
+
670
+ <dl class="param-type">
671
+ <dt>
672
+ Type
673
+ </dt>
674
+ <dd>
675
+
676
+ <span class="param-type">String</span>
677
+
678
+
679
+ </dd>
680
+ </dl>
681
+
682
+
683
+
684
+
685
+
686
+
687
+
688
+
689
+
690
+
691
+ <h4 class="name" id="parse"><span class="type-signature"></span>parse<span class="signature">()</span><span class="type-signature"> &rarr; {Object}</span></h4>
692
+
693
+
694
+
695
+
696
+
697
+
698
+ <dl class="details">
699
+
700
+
701
+ <dt class="tag-source">Source:</dt>
702
+ <dd class="tag-source"><ul class="dummy"><li>
703
+ <a href="SourceFile.js.html">SourceFile.js</a>, <a href="SourceFile.js.html#line74">line 74</a>
704
+ </li></ul></dd>
705
+
706
+
707
+
708
+
709
+
710
+
711
+
712
+
713
+
714
+
715
+
716
+
717
+
718
+
719
+
720
+
721
+
722
+
723
+
724
+
725
+
726
+
727
+
728
+
729
+
730
+
731
+
732
+
733
+
734
+
735
+
736
+ </dl>
737
+
738
+
739
+
740
+
741
+
742
+ <div class="description usertext">
743
+ Parse the current source file into a list of resources (in the case of
744
+ resource files, or lines in the case of other types of files.
745
+ </div>
746
+
747
+
748
+
749
+
750
+
751
+
752
+
753
+
754
+
755
+
756
+
757
+
758
+
759
+
760
+
761
+
762
+
763
+
764
+
765
+
766
+
767
+
768
+
769
+
770
+
771
+ <h5>Returns:</h5>
772
+
773
+
774
+ <div class="param-desc">
775
+ the parsed representation of this file
776
+ </div>
777
+
778
+
779
+
780
+ <dl class="param-type">
781
+ <dt>
782
+ Type
783
+ </dt>
784
+ <dd>
785
+
786
+ <span class="param-type">Object</span>
787
+
788
+
789
+ </dd>
790
+ </dl>
791
+
792
+
793
+
794
+
795
+
796
+
797
+
798
+
799
+
800
+
801
+
802
+ </article>
803
+
804
+ </section>
805
+
806
+
807
+
808
+
809
+
810
+
811
+ </div>
812
+
813
+ <br class="clear">
814
+
815
+ <footer>
816
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Mon Dec 19 2022 15:00:46 GMT-0800 (Pacific Standard Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
817
+ </footer>
818
+
819
+ <script>prettyPrint();</script>
820
+ <script src="scripts/polyfill.js"></script>
821
+ <script src="scripts/linenumber.js"></script>
822
+
823
+
824
+
825
+ </body>
826
+ </html>