convert-csv-to-json 4.13.0 → 4.14.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 (65) hide show
  1. package/.github/workflows/ci-cd.yml +1 -1
  2. package/docs/api/BrowserApi.html +1255 -1028
  3. package/docs/api/BrowserApiError.html +326 -179
  4. package/docs/api/ConfigurationError.html +375 -224
  5. package/docs/api/CsvFormatError.html +334 -187
  6. package/docs/api/CsvParsingError.html +259 -132
  7. package/docs/api/CsvToJson.html +1545 -1314
  8. package/docs/api/CsvToJsonAsync.html +1356 -1148
  9. package/docs/api/FileOperationError.html +213 -101
  10. package/docs/api/FileUtils.html +568 -430
  11. package/docs/api/InputValidationError.html +229 -115
  12. package/docs/api/JsonUtil.html +222 -110
  13. package/docs/api/JsonValidationError.html +197 -87
  14. package/docs/api/StringUtils.html +833 -0
  15. package/docs/api/global.html +1537 -1354
  16. package/docs/api/index.html +114 -26
  17. package/docs/api/index.js.html +137 -31
  18. package/docs/api/scripts/app.min.js +1 -0
  19. package/docs/api/scripts/linenumber.js +10 -9
  20. package/docs/api/scripts/search.js +39 -0
  21. package/docs/api/src_browserApi.js.html +120 -29
  22. package/docs/api/src_csvToJson.js.html +119 -28
  23. package/docs/api/src_csvToJsonAsync.js.html +118 -27
  24. package/docs/api/src_util_errors.js.html +126 -28
  25. package/docs/api/src_util_fileUtils.js.html +117 -26
  26. package/docs/api/src_util_jsonUtils.js.html +117 -26
  27. package/docs/api/src_util_stringUtils.js.html +121 -27
  28. package/docs/api/styles/app.min.css +1 -0
  29. package/docs/api/styles/iframe.css +13 -0
  30. package/docs/api/styles/reset.css +44 -0
  31. package/eslint.config.js +115 -0
  32. package/index.js +21 -5
  33. package/jsdoc.json +29 -4
  34. package/package.json +5 -3
  35. package/src/browserApi.js +4 -3
  36. package/src/csvToJson.js +3 -2
  37. package/src/csvToJsonAsync.js +2 -1
  38. package/src/util/errors.js +10 -2
  39. package/src/util/fileUtils.js +1 -0
  40. package/src/util/jsonUtils.js +1 -0
  41. package/src/util/stringUtils.js +5 -1
  42. package/.eslintignore +0 -3
  43. package/.eslintrc.json +0 -48
  44. package/docs/api/fonts/OpenSans-Bold-webfont.eot +0 -0
  45. package/docs/api/fonts/OpenSans-Bold-webfont.svg +0 -1830
  46. package/docs/api/fonts/OpenSans-Bold-webfont.woff +0 -0
  47. package/docs/api/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
  48. package/docs/api/fonts/OpenSans-BoldItalic-webfont.svg +0 -1830
  49. package/docs/api/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
  50. package/docs/api/fonts/OpenSans-Italic-webfont.eot +0 -0
  51. package/docs/api/fonts/OpenSans-Italic-webfont.svg +0 -1830
  52. package/docs/api/fonts/OpenSans-Italic-webfont.woff +0 -0
  53. package/docs/api/fonts/OpenSans-Light-webfont.eot +0 -0
  54. package/docs/api/fonts/OpenSans-Light-webfont.svg +0 -1831
  55. package/docs/api/fonts/OpenSans-Light-webfont.woff +0 -0
  56. package/docs/api/fonts/OpenSans-LightItalic-webfont.eot +0 -0
  57. package/docs/api/fonts/OpenSans-LightItalic-webfont.svg +0 -1835
  58. package/docs/api/fonts/OpenSans-LightItalic-webfont.woff +0 -0
  59. package/docs/api/fonts/OpenSans-Regular-webfont.eot +0 -0
  60. package/docs/api/fonts/OpenSans-Regular-webfont.svg +0 -1831
  61. package/docs/api/fonts/OpenSans-Regular-webfont.woff +0 -0
  62. package/docs/api/scripts/prettify/Apache-License-2.0.txt +0 -202
  63. package/docs/api/scripts/prettify/lang-css.js +0 -2
  64. package/docs/api/scripts/prettify/prettify.js +0 -28
  65. package/docs/api/styles/jsdoc-default.css +0 -358
@@ -1,26 +1,107 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="en">
3
+
3
4
  <head>
4
- <meta charset="utf-8">
5
- <title>JSDoc: Class: ConfigurationError</title>
6
-
7
- <script src="scripts/prettify/prettify.js"> </script>
8
- <script src="scripts/prettify/lang-css.js"> </script>
9
- <!--[if lt IE 9]>
10
- <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
11
- <![endif]-->
12
- <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
13
- <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
5
+
6
+ <meta charset="utf-8">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1">
8
+ <title> ConfigurationError</title>
9
+
10
+ <script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js"></script>
11
+ <script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
12
+ <script src="./build/entry.js"></script>
13
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
14
+ <!--[if lt IE 9]>
15
+ <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
16
+ <![endif]-->
17
+ <link href="https://fonts.googleapis.com/css?family=Roboto:100,400,700|Inconsolata,700" rel="stylesheet">
18
+ <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
19
+ <link type="text/css" rel="stylesheet" href="https://jmblog.github.io/color-themes-for-google-code-prettify/themes/tomorrow-night.min.css">
20
+ <link type="text/css" rel="stylesheet" href="styles/app.min.css">
21
+ <link type="text/css" rel="stylesheet" href="styles/iframe.css">
22
+ <link type="text/css" rel="stylesheet" href="./node_modules/better-docs/css/better-docs.css">
23
+ <script async defer src="https://buttons.github.io/buttons.js"></script>
24
+
25
+
14
26
  </head>
15
27
 
16
- <body>
17
-
18
- <div id="main">
19
28
 
20
- <h1 class="page-title">Class: ConfigurationError</h1>
21
29
 
30
+ <body class="layout small-header">
31
+ <div id="stickyNavbarOverlay"></div>
22
32
 
23
33
 
34
+ <div class="top-nav">
35
+ <div class="inner">
36
+ <a id="hamburger" role="button" class="navbar-burger" aria-label="menu" aria-expanded="false">
37
+ <span aria-hidden="true"></span>
38
+ <span aria-hidden="true"></span>
39
+ <span aria-hidden="true"></span>
40
+ </a>
41
+ <div class="logo">
42
+
43
+ <a class="image" href="index.html">
44
+ <img src="https://raw.githubusercontent.com/iuccio/CSVtoJSON/master/CSVtoJSON.png" alt="logo">
45
+ </a>
46
+
47
+
48
+ <a href="index.html">
49
+ <h1 class="navbar-item">Convert CSV to JSON</h1>
50
+ </a>
51
+
52
+ </div>
53
+ <div class="menu">
54
+
55
+ <div class="navigation">
56
+ <a
57
+ href="index.html"
58
+ class="link"
59
+ >
60
+ Documentation
61
+ </a>
62
+
63
+
64
+
65
+ <a
66
+ class="link user-link "
67
+ href="https://github.com/iuccio/CSVtoJSON"
68
+ >
69
+ GitHub
70
+ </a>
71
+
72
+ <a
73
+ class="link user-link "
74
+ href="https://www.npmjs.com/package/convert-csv-to-json"
75
+ >
76
+ NPM
77
+ </a>
78
+
79
+
80
+
81
+ </div>
82
+ </div>
83
+ </div>
84
+ </div>
85
+ <div id="main">
86
+ <div
87
+ class="sidebar "
88
+ id="sidebarNav"
89
+ >
90
+
91
+ <nav>
92
+
93
+ <h2><a href="index.html">Documentation</a></h2><div class="category"></div><div class="category"><h2>1-Core API</h2><h3>Global</h3><ul><li><a href="global.html#asciiEncoding">asciiEncoding</a></li><li><a href="global.html#base64Encoding">base64Encoding</a></li><li><a href="global.html#csvStringToJson">csvStringToJson</a></li><li><a href="global.html#csvStringToJsonStringified">csvStringToJsonStringified</a></li><li><a href="global.html#csvToJsonAsync">csvToJsonAsync</a></li><li><a href="global.html#customEncoding">customEncoding</a></li><li><a href="global.html#fieldDelimiter">fieldDelimiter</a></li><li><a href="global.html#formatValueByType">formatValueByType</a></li><li><a href="global.html#generateJsonFileFromCsv">generateJsonFileFromCsv</a></li><li><a href="global.html#getJsonFromCsv">getJsonFromCsv</a></li><li><a href="global.html#hexEncoding">hexEncoding</a></li><li><a href="global.html#indexHeader">indexHeader</a></li><li><a href="global.html#latin1Encoding">latin1Encoding</a></li><li><a href="global.html#mapRows">mapRows</a></li><li><a href="global.html#parseSubArray">parseSubArray</a></li><li><a href="global.html#supportQuotedField">supportQuotedField</a></li><li><a href="global.html#trimHeaderFieldWhiteSpace">trimHeaderFieldWhiteSpace</a></li><li><a href="global.html#ucs2Encoding">ucs2Encoding</a></li><li><a href="global.html#utf16leEncoding">utf16leEncoding</a></li><li><a href="global.html#utf8Encoding">utf8Encoding</a></li></ul></div><div class="category"><h2>2-Sync</h2><h3>Classes</h3><ul><li><a href="CsvToJson.html">CsvToJson</a></li></ul></div><div class="category"><h2>3-Async</h2><h3>Classes</h3><ul><li><a href="CsvToJsonAsync.html">CsvToJsonAsync</a></li></ul></div><div class="category"><h2>4-Browser</h2><h3>Classes</h3><ul><li><a href="BrowserApi.html">BrowserApi</a></li></ul></div><div class="category"><h2>Error Classes</h2><h3>Classes</h3><ul><li><a href="BrowserApiError.html">BrowserApiError</a></li><li><a href="ConfigurationError.html">ConfigurationError</a></li><li><a href="CsvFormatError.html">CsvFormatError</a></li><li><a href="CsvParsingError.html">CsvParsingError</a></li><li><a href="FileOperationError.html">FileOperationError</a></li><li><a href="InputValidationError.html">InputValidationError</a></li><li><a href="JsonValidationError.html">JsonValidationError</a></li></ul></div><div class="category"><h2>Utilities</h2><h3>Classes</h3><ul><li><a href="FileUtils.html">FileUtils</a></li><li><a href="JsonUtil.html">JsonUtil</a></li><li><a href="StringUtils.html">StringUtils</a></li></ul></div>
94
+
95
+ </nav>
96
+ </div>
97
+ <div class="core" id="main-content-wrapper">
98
+ <div class="content">
99
+ <header class="page-title">
100
+ <p>Class</p>
101
+ <h1>ConfigurationError</h1>
102
+ </header>
103
+
104
+
24
105
 
25
106
 
26
107
 
@@ -40,25 +121,36 @@ Thrown when configuration options conflict or are invalid</p></div>
40
121
  <div class="container-overview">
41
122
 
42
123
 
124
+ <div class='vertical-section'>
125
+ <div class="members">
126
+ <div class="member">
127
+ <div class=name>
128
+ <span class="tag">Constructor</span>
129
+ </div>
130
+
131
+
43
132
 
44
133
 
45
- <h2>Constructor</h2>
134
+ <h4 class="name" id="ConfigurationError">
135
+ <a class="href-link" href="#ConfigurationError">#</a>
136
+
137
+ <span class="code-name">
138
+
139
+ new ConfigurationError<span class="signature">(message, conflictingOptions)</span><span class="type-signature"></span>
140
+
141
+ </span>
142
+ </h4>
46
143
 
47
144
 
48
145
 
49
- <h4 class="name" id="ConfigurationError"><span class="type-signature"></span>new ConfigurationError<span class="signature">(message, conflictingOptions)</span><span class="type-signature"></span></h4>
50
146
 
51
-
147
+ <div class="description">
148
+ <p>Create a configuration error</p>
149
+ </div>
52
150
 
53
151
 
54
152
 
55
153
 
56
- <div class="description">
57
- <p>Create a configuration error</p>
58
- </div>
59
-
60
-
61
-
62
154
 
63
155
 
64
156
 
@@ -67,83 +159,85 @@ Thrown when configuration options conflict or are invalid</p></div>
67
159
 
68
160
  <h5>Parameters:</h5>
69
161
 
162
+ <div class="table-container">
163
+ <table class="params table">
164
+ <thead>
165
+ <tr>
166
+
167
+ <th>Name</th>
168
+
70
169
 
71
- <table class="params">
72
- <thead>
73
- <tr>
74
-
75
- <th>Name</th>
76
-
77
-
78
- <th>Type</th>
170
+ <th>Type</th>
79
171
 
80
-
172
+
81
173
 
82
-
174
+
83
175
 
84
- <th class="last">Description</th>
85
- </tr>
86
- </thead>
176
+ <th class="last">Description</th>
177
+ </tr>
178
+ </thead>
87
179
 
88
- <tbody>
89
-
180
+ <tbody>
181
+
90
182
 
91
- <tr>
92
-
93
- <td class="name"><code>message</code></td>
94
183
 
184
+ <tr class="deep-level-0">
185
+
186
+ <td class="name"><code>message</code></td>
187
+
95
188
 
96
- <td class="type">
97
-
98
-
99
- <span class="param-type">string</span>
189
+ <td class="type">
190
+
191
+
192
+ <code class="param-type">string</code>
100
193
 
101
194
 
102
-
103
- </td>
195
+
196
+ </td>
104
197
 
105
-
198
+
106
199
 
107
-
200
+
108
201
 
109
- <td class="description last"><p>Error message</p></td>
110
- </tr>
202
+ <td class="description last"><p>Error message</p></td>
203
+ </tr>
111
204
 
112
-
113
205
 
114
- <tr>
115
-
116
- <td class="name"><code>conflictingOptions</code></td>
117
-
206
+
118
207
 
119
- <td class="type">
120
208
 
121
-
122
- <span class="param-type">object</span>
209
+ <tr class="deep-level-0">
210
+
211
+ <td class="name"><code>conflictingOptions</code></td>
212
+
123
213
 
214
+ <td class="type">
215
+
216
+
217
+ <code class="param-type">object</code>
124
218
 
125
-
126
- </td>
127
219
 
128
-
220
+
221
+ </td>
129
222
 
130
-
223
+
131
224
 
132
- <td class="description last"><p>Configuration options in conflict (optional)</p></td>
133
- </tr>
225
+
134
226
 
135
-
136
- </tbody>
137
- </table>
227
+ <td class="description last"><p>Configuration options in conflict (optional)</p></td>
228
+ </tr>
138
229
 
139
230
 
231
+
232
+ </tbody>
233
+ </table>
234
+ </div>
140
235
 
141
236
 
142
237
 
143
238
 
144
- <dl class="details">
145
239
 
146
-
240
+ <dl class="details">
147
241
 
148
242
 
149
243
 
@@ -168,16 +262,19 @@ Thrown when configuration options conflict or are invalid</p></div>
168
262
 
169
263
 
170
264
 
171
- <dt class="tag-source">Source:</dt>
172
- <dd class="tag-source"><ul class="dummy"><li>
173
- <a href="src_util_errors.js.html">src/util/errors.js</a>, <a href="src_util_errors.js.html#line90">line 90</a>
174
- </li></ul></dd>
175
265
 
176
266
 
177
267
 
178
268
 
179
269
 
180
270
 
271
+
272
+ <p class="tag-source">
273
+ <a href="src_util_errors.js.html" class="button">View Source</a>
274
+ <span>
275
+ <a href="src_util_errors.js.html">src/util/errors.js</a>, <a href="src_util_errors.js.html#line94">line 94</a>
276
+ </span>
277
+ </p>
181
278
 
182
279
  </dl>
183
280
 
@@ -200,11 +297,15 @@ Thrown when configuration options conflict or are invalid</p></div>
200
297
 
201
298
 
202
299
 
300
+
301
+
302
+ </div>
303
+ </div>
304
+ </div>
305
+
203
306
 
204
307
  </div>
205
-
206
308
 
207
-
208
309
 
209
310
 
210
311
 
@@ -218,25 +319,38 @@ Thrown when configuration options conflict or are invalid</p></div>
218
319
 
219
320
 
220
321
 
221
- <h3 class="subsection-title">Methods</h3>
222
322
 
223
-
323
+
324
+ <div class='vertical-section'>
325
+ <h1>Methods</h1>
326
+ <div class="members">
224
327
 
328
+ <div class="member">
225
329
 
226
-
227
330
 
228
331
 
229
- <h4 class="name" id=".invalidHeaderIndex"><span class="type-signature">(static) </span>invalidHeaderIndex<span class="signature">(value)</span><span class="type-signature"> &rarr; {<a href="ConfigurationError.html">ConfigurationError</a>}</span></h4>
332
+ <h4 class="name" id=".invalidHeaderIndex">
333
+ <a class="href-link" href="#.invalidHeaderIndex">#</a>
334
+
335
+
336
+ <span class='tag'>static</span>
337
+
338
+
339
+ <span class="code-name">
340
+
341
+ invalidHeaderIndex<span class="signature">(value)</span><span class="type-signature"> &rarr; {<a href="ConfigurationError.html">ConfigurationError</a>}</span>
342
+
343
+ </span>
344
+ </h4>
230
345
 
231
346
 
232
347
 
233
-
234
-
235
-
236
- <div class="description">
237
- <p>Create error for invalid header index
348
+
349
+ <div class="description">
350
+ <p>Create error for invalid header index
238
351
  Occurs when indexHeader() receives non-numeric value</p>
239
- </div>
352
+ </div>
353
+
240
354
 
241
355
 
242
356
 
@@ -248,52 +362,54 @@ Occurs when indexHeader() receives non-numeric value</p>
248
362
 
249
363
  <h5>Parameters:</h5>
250
364
 
365
+ <div class="table-container">
366
+ <table class="params table">
367
+ <thead>
368
+ <tr>
369
+
370
+ <th>Name</th>
371
+
251
372
 
252
- <table class="params">
253
- <thead>
254
- <tr>
255
-
256
- <th>Name</th>
257
-
258
-
259
- <th>Type</th>
373
+ <th>Type</th>
260
374
 
261
-
375
+
262
376
 
263
-
377
+
264
378
 
265
- <th class="last">Description</th>
266
- </tr>
267
- </thead>
379
+ <th class="last">Description</th>
380
+ </tr>
381
+ </thead>
268
382
 
269
- <tbody>
270
-
383
+ <tbody>
384
+
271
385
 
272
- <tr>
273
-
274
- <td class="name"><code>value</code></td>
275
386
 
387
+ <tr class="deep-level-0">
388
+
389
+ <td class="name"><code>value</code></td>
390
+
276
391
 
277
- <td class="type">
278
-
279
-
280
- <span class="param-type">*</span>
392
+ <td class="type">
393
+
394
+
395
+ <code class="param-type">unknown</code>
281
396
 
282
397
 
283
-
284
- </td>
398
+
399
+ </td>
285
400
 
286
-
401
+
287
402
 
288
-
403
+
289
404
 
290
- <td class="description last"><p>Invalid header index value</p></td>
291
- </tr>
405
+ <td class="description last"><p>Invalid header index value</p></td>
406
+ </tr>
292
407
 
293
-
294
- </tbody>
295
- </table>
296
408
 
409
+
410
+ </tbody>
411
+ </table>
412
+ </div>
297
413
 
298
414
 
299
415
 
@@ -324,18 +440,19 @@ Occurs when indexHeader() receives non-numeric value</p>
324
440
 
325
441
 
326
442
 
327
-
328
-
329
- <dt class="tag-source">Source:</dt>
330
- <dd class="tag-source"><ul class="dummy"><li>
331
- <a href="src_util_errors.js.html">src/util/errors.js</a>, <a href="src_util_errors.js.html#line128">line 128</a>
332
- </li></ul></dd>
333
443
 
334
444
 
335
445
 
336
446
 
337
447
 
338
448
 
449
+
450
+ <p class="tag-source">
451
+ <a href="src_util_errors.js.html" class="button">View Source</a>
452
+ <span>
453
+ <a href="src_util_errors.js.html">src/util/errors.js</a>, <a href="src_util_errors.js.html#line132">line 132</a>
454
+ </span>
455
+ </p>
339
456
 
340
457
  </dl>
341
458
 
@@ -353,50 +470,65 @@ Occurs when indexHeader() receives non-numeric value</p>
353
470
 
354
471
 
355
472
 
356
- <h5>Returns:</h5>
357
473
 
358
-
359
- <div class="param-desc">
360
- <p>Configured error instance</p>
361
- </div>
362
474
 
363
475
 
476
+ <div class='columns method-parameter'>
477
+ <div class="column is-2"><label>Returns:</label></div>
478
+ <div class="column is-10">
479
+
480
+
364
481
 
365
- <dl>
366
- <dt>
367
- Type
368
- </dt>
369
- <dd>
482
+ <div class="columns">
483
+
484
+ <div class='param-desc column is-7'><p>Configured error instance</p></div>
485
+
486
+
487
+ <div class='column is-5 has-text-left'>
488
+ <label>Type: </label>
370
489
 
371
- <span class="param-type"><a href="ConfigurationError.html">ConfigurationError</a></span>
372
-
490
+ <code class="param-type"><a href="ConfigurationError.html">ConfigurationError</a></code>
373
491
 
374
- </dd>
375
- </dl>
376
492
 
493
+ </div>
377
494
 
495
+ </div>
378
496
 
497
+
498
+ </div>
499
+ </div>
379
500
 
380
501
 
381
502
 
382
503
 
383
-
504
+ </div>
384
505
 
506
+ <div class="member">
385
507
 
386
-
387
508
 
388
509
 
389
- <h4 class="name" id=".quotedFieldConflict"><span class="type-signature">(static) </span>quotedFieldConflict<span class="signature">(optionName, value)</span><span class="type-signature"> &rarr; {<a href="ConfigurationError.html">ConfigurationError</a>}</span></h4>
510
+ <h4 class="name" id=".quotedFieldConflict">
511
+ <a class="href-link" href="#.quotedFieldConflict">#</a>
512
+
513
+
514
+ <span class='tag'>static</span>
515
+
516
+
517
+ <span class="code-name">
518
+
519
+ quotedFieldConflict<span class="signature">(optionName, value)</span><span class="type-signature"> &rarr; {<a href="ConfigurationError.html">ConfigurationError</a>}</span>
520
+
521
+ </span>
522
+ </h4>
390
523
 
391
524
 
392
525
 
393
-
394
-
395
-
396
- <div class="description">
397
- <p>Create error for quoted field configuration conflict
526
+
527
+ <div class="description">
528
+ <p>Create error for quoted field configuration conflict
398
529
  Occurs when quote character is used as delimiter while quoted fields are enabled</p>
399
- </div>
530
+ </div>
531
+
400
532
 
401
533
 
402
534
 
@@ -408,83 +540,85 @@ Occurs when quote character is used as delimiter while quoted fields are enabled
408
540
 
409
541
  <h5>Parameters:</h5>
410
542
 
543
+ <div class="table-container">
544
+ <table class="params table">
545
+ <thead>
546
+ <tr>
547
+
548
+ <th>Name</th>
549
+
411
550
 
412
- <table class="params">
413
- <thead>
414
- <tr>
415
-
416
- <th>Name</th>
417
-
418
-
419
- <th>Type</th>
551
+ <th>Type</th>
420
552
 
421
-
553
+
422
554
 
423
-
555
+
424
556
 
425
- <th class="last">Description</th>
426
- </tr>
427
- </thead>
557
+ <th class="last">Description</th>
558
+ </tr>
559
+ </thead>
428
560
 
429
- <tbody>
430
-
561
+ <tbody>
562
+
431
563
 
432
- <tr>
433
-
434
- <td class="name"><code>optionName</code></td>
435
564
 
565
+ <tr class="deep-level-0">
566
+
567
+ <td class="name"><code>optionName</code></td>
568
+
436
569
 
437
- <td class="type">
438
-
439
-
440
- <span class="param-type">string</span>
570
+ <td class="type">
571
+
572
+
573
+ <code class="param-type">string</code>
441
574
 
442
575
 
443
-
444
- </td>
576
+
577
+ </td>
445
578
 
446
-
579
+
447
580
 
448
-
581
+
449
582
 
450
- <td class="description last"><p>Name of the conflicting option</p></td>
451
- </tr>
583
+ <td class="description last"><p>Name of the conflicting option</p></td>
584
+ </tr>
452
585
 
453
-
454
586
 
455
- <tr>
456
-
457
- <td class="name"><code>value</code></td>
458
-
587
+
459
588
 
460
- <td class="type">
461
589
 
462
-
463
- <span class="param-type">string</span>
590
+ <tr class="deep-level-0">
591
+
592
+ <td class="name"><code>value</code></td>
593
+
464
594
 
595
+ <td class="type">
596
+
597
+
598
+ <code class="param-type">string</code>
465
599
 
466
-
467
- </td>
468
600
 
469
-
601
+
602
+ </td>
470
603
 
471
-
604
+
472
605
 
473
- <td class="description last"><p>Value that causes the conflict</p></td>
474
- </tr>
606
+
475
607
 
476
-
477
- </tbody>
478
- </table>
608
+ <td class="description last"><p>Value that causes the conflict</p></td>
609
+ </tr>
479
610
 
480
611
 
612
+
613
+ </tbody>
614
+ </table>
615
+ </div>
481
616
 
482
617
 
483
618
 
484
619
 
485
- <dl class="details">
486
620
 
487
-
621
+ <dl class="details">
488
622
 
489
623
 
490
624
 
@@ -509,16 +643,19 @@ Occurs when quote character is used as delimiter while quoted fields are enabled
509
643
 
510
644
 
511
645
 
512
- <dt class="tag-source">Source:</dt>
513
- <dd class="tag-source"><ul class="dummy"><li>
514
- <a href="src_util_errors.js.html">src/util/errors.js</a>, <a href="src_util_errors.js.html#line109">line 109</a>
515
- </li></ul></dd>
516
646
 
517
647
 
518
648
 
519
649
 
520
650
 
521
651
 
652
+
653
+ <p class="tag-source">
654
+ <a href="src_util_errors.js.html" class="button">View Source</a>
655
+ <span>
656
+ <a href="src_util_errors.js.html">src/util/errors.js</a>, <a href="src_util_errors.js.html#line113">line 113</a>
657
+ </span>
658
+ </p>
522
659
 
523
660
  </dl>
524
661
 
@@ -536,34 +673,41 @@ Occurs when quote character is used as delimiter while quoted fields are enabled
536
673
 
537
674
 
538
675
 
539
- <h5>Returns:</h5>
540
676
 
541
-
542
- <div class="param-desc">
543
- <p>Configured error instance</p>
544
- </div>
545
677
 
546
678
 
679
+ <div class='columns method-parameter'>
680
+ <div class="column is-2"><label>Returns:</label></div>
681
+ <div class="column is-10">
682
+
683
+
547
684
 
548
- <dl>
549
- <dt>
550
- Type
551
- </dt>
552
- <dd>
685
+ <div class="columns">
686
+
687
+ <div class='param-desc column is-7'><p>Configured error instance</p></div>
688
+
689
+
690
+ <div class='column is-5 has-text-left'>
691
+ <label>Type: </label>
553
692
 
554
- <span class="param-type"><a href="ConfigurationError.html">ConfigurationError</a></span>
555
-
693
+ <code class="param-type"><a href="ConfigurationError.html">ConfigurationError</a></code>
556
694
 
557
- </dd>
558
- </dl>
559
695
 
696
+ </div>
560
697
 
698
+ </div>
561
699
 
700
+
701
+ </div>
702
+ </div>
562
703
 
563
704
 
564
705
 
565
706
 
566
-
707
+ </div>
708
+
709
+ </div>
710
+ </div>
567
711
 
568
712
 
569
713
 
@@ -576,19 +720,26 @@ Occurs when quote character is used as delimiter while quoted fields are enabled
576
720
 
577
721
 
578
722
 
579
- </div>
580
-
581
- <nav>
582
- <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="BrowserApi.html">BrowserApi</a></li><li><a href="BrowserApiError.html">BrowserApiError</a></li><li><a href="ConfigurationError.html">ConfigurationError</a></li><li><a href="CsvFormatError.html">CsvFormatError</a></li><li><a href="CsvParsingError.html">CsvParsingError</a></li><li><a href="CsvToJson.html">CsvToJson</a></li><li><a href="CsvToJsonAsync.html">CsvToJsonAsync</a></li><li><a href="FileOperationError.html">FileOperationError</a></li><li><a href="FileUtils.html">FileUtils</a></li><li><a href="InputValidationError.html">InputValidationError</a></li><li><a href="JsonUtil.html">JsonUtil</a></li><li><a href="JsonValidationError.html">JsonValidationError</a></li></ul><h3>Global</h3><ul><li><a href="global.html#asciiEncoding">asciiEncoding</a></li><li><a href="global.html#base64Encoding">base64Encoding</a></li><li><a href="global.html#browser">browser</a></li><li><a href="global.html#csvStringToJson">csvStringToJson</a></li><li><a href="global.html#csvStringToJsonStringified">csvStringToJsonStringified</a></li><li><a href="global.html#csvToJsonAsync">csvToJsonAsync</a></li><li><a href="global.html#customEncoding">customEncoding</a></li><li><a href="global.html#fieldDelimiter">fieldDelimiter</a></li><li><a href="global.html#formatValueByType">formatValueByType</a></li><li><a href="global.html#generateJsonFileFromCsv">generateJsonFileFromCsv</a></li><li><a href="global.html#getJsonFromCsv">getJsonFromCsv</a></li><li><a href="global.html#hexEncoding">hexEncoding</a></li><li><a href="global.html#indexHeader">indexHeader</a></li><li><a href="global.html#latin1Encoding">latin1Encoding</a></li><li><a href="global.html#mapRows">mapRows</a></li><li><a href="global.html#parseSubArray">parseSubArray</a></li><li><a href="global.html#supportQuotedField">supportQuotedField</a></li><li><a href="global.html#trimHeaderFieldWhiteSpace">trimHeaderFieldWhiteSpace</a></li><li><a href="global.html#ucs2Encoding">ucs2Encoding</a></li><li><a href="global.html#utf16leEncoding">utf16leEncoding</a></li><li><a href="global.html#utf8Encoding">utf8Encoding</a></li></ul>
583
- </nav>
584
-
585
- <br class="clear">
723
+ </div>
724
+
725
+ <footer class="footer">
726
+ <div class="content has-text-centered">
727
+ <p>Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.5</a></p>
728
+ <p class="sidebar-created-by">
729
+ <a href="https://github.com/SoftwareBrothers/better-docs" target="_blank">BetterDocs theme</a> provided with <i class="fas fa-heart"></i> by
730
+ <a href="http://softwarebrothers.co" target="_blank">SoftwareBrothers - JavaScript Development Agency</a>
731
+ </p>
732
+ </div>
733
+ </footer>
734
+
735
+ </div>
736
+ <div id="side-nav" class="side-nav">
737
+ </div>
738
+ </div>
739
+ <script src="scripts/app.min.js"></script>
740
+ <script>PR.prettyPrint();</script>
741
+ <script src="scripts/linenumber.js"> </script>
586
742
 
587
- <footer>
588
- Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 4.0.5</a> on Fri Mar 20 2026 16:08:52 GMT+0000 (Coordinated Universal Time)
589
- </footer>
590
743
 
591
- <script> prettyPrint(); </script>
592
- <script src="scripts/linenumber.js"> </script>
593
744
  </body>
594
745
  </html>