shinkansen-transmission 2.4.0 → 2.4.2

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 (23) hide show
  1. package/package.json +4 -4
  2. package/src/transmission/common/index.d.mts +2 -2
  3. package/src/transmission/common/index.mjs +97 -100
  4. package/src/transmission/from-document-to-hash/boolean/index.mjs +4 -1
  5. package/src/transmission/from-document-to-hash/index.mjs +15 -8
  6. package/src/transmission/from-document-to-hash/null/index.mjs +4 -1
  7. package/src/transmission/from-document-to-hash/number/index.mjs +4 -1
  8. package/src/transmission/from-document-to-hash/string/index.mjs +2 -5
  9. package/src/transmission/from-hash-to-document/boolean/index.mjs +5 -5
  10. package/src/transmission/from-hash-to-document/index.mjs +13 -13
  11. package/src/transmission/from-hash-to-document/null/index.mjs +5 -5
  12. package/src/transmission/from-hash-to-document/number/index.mjs +5 -5
  13. package/src/transmission/from-hash-to-document/string/index.mjs +5 -5
  14. package/src/transmission/to-zashiki/params/index.mjs +8 -8
  15. package/src/transmission/to-zashiki/render/array/index.mjs +20 -20
  16. package/src/transmission/to-zashiki/render/boolean/index.mjs +25 -25
  17. package/src/transmission/to-zashiki/render/null/index.mjs +25 -25
  18. package/src/transmission/to-zashiki/render/number/index.mjs +25 -25
  19. package/src/transmission/to-zashiki/render/object/index.mjs +20 -20
  20. package/src/transmission/to-zashiki/render/string/index.mjs +25 -25
  21. package/src/transmission/to-zashiki/render-params/schema/index.mjs +15 -15
  22. package/src/transmission/to-zashiki/transform-root-schema.mjs +6 -2
  23. package/src/transmission/to-zashiki/transform-schema.mjs +147 -129
@@ -129,12 +129,12 @@ function toSchema (schemaProps, item) {
129
129
  * @returns {(schema: SchemaType, index: number) => ZashikiType}
130
130
  */
131
131
  export function mapTransformNullByIndex (rootSchema, values, params) {
132
- /**
132
+ /*
133
133
  * log('mapTransformNullByIndex')
134
134
  */
135
135
 
136
136
  return function map (schema, index) {
137
- /**
137
+ /*
138
138
  * log('map)
139
139
  */
140
140
  params.index = index
@@ -152,12 +152,12 @@ export function mapTransformNullByIndex (rootSchema, values, params) {
152
152
  * @returns {(schema: SchemaType, index: number) => ZashikiType}
153
153
  */
154
154
  export function mapTransformBooleanByIndex (rootSchema, values, params) {
155
- /**
155
+ /*
156
156
  * log('mapTransformBooleanByIndex')
157
157
  */
158
158
 
159
159
  return function map (schema, index) {
160
- /**
160
+ /*
161
161
  * log('map')
162
162
  */
163
163
  params.index = index
@@ -175,12 +175,12 @@ export function mapTransformBooleanByIndex (rootSchema, values, params) {
175
175
  * @returns {(schema: SchemaType, index: number) => ZashikiType}
176
176
  */
177
177
  export function mapTransformObjectByIndex (rootSchema, values, params) {
178
- /**
178
+ /*
179
179
  * log('mapTransformObjectByIndex')
180
180
  */
181
181
 
182
182
  return function map (schema, index) {
183
- /**
183
+ /*
184
184
  * log('map')
185
185
  */
186
186
  params.index = index
@@ -198,12 +198,12 @@ export function mapTransformObjectByIndex (rootSchema, values, params) {
198
198
  * @returns {(schema: SchemaType, index: number) => ZashikiType}
199
199
  */
200
200
  export function mapTransformArrayByIndex (rootSchema, values, params) {
201
- /**
201
+ /*
202
202
  * log('mapTransformArrayByIndex')
203
203
  */
204
204
 
205
205
  return function map (schema, index) {
206
- /**
206
+ /*
207
207
  * log('map')
208
208
  */
209
209
  params.index = index
@@ -221,12 +221,12 @@ export function mapTransformArrayByIndex (rootSchema, values, params) {
221
221
  * @returns {(schema: SchemaType, index: number) => ZashikiType}
222
222
  */
223
223
  export function mapTransformNumberByIndex (rootSchema, values, params) {
224
- /**
224
+ /*
225
225
  * log('mapTransformNumberByIndex')
226
226
  */
227
227
 
228
228
  return function map (schema, index) {
229
- /**
229
+ /*
230
230
  * log('map')
231
231
  */
232
232
  params.index = index
@@ -244,12 +244,12 @@ export function mapTransformNumberByIndex (rootSchema, values, params) {
244
244
  * @returns {(schema: SchemaType, index: number) => ZashikiType}
245
245
  */
246
246
  export function mapTransformStringByIndex (rootSchema, values, params) {
247
- /**
247
+ /*
248
248
  * log('mapTransformStringByIndex')
249
249
  */
250
250
 
251
251
  return function map (schema, index) {
252
- /**
252
+ /*
253
253
  * log('map')
254
254
  */
255
255
  params.index = index
@@ -267,12 +267,12 @@ export function mapTransformStringByIndex (rootSchema, values, params) {
267
267
  * @returns {(schema: SchemaType, index: number) => ZashikiType}
268
268
  */
269
269
  export function mapTransformByIndex (rootSchema, values, params) {
270
- /**
270
+ /*
271
271
  * log('mapTransformByIndex')
272
272
  */
273
273
 
274
274
  return function map (schema, index) {
275
- /**
275
+ /*
276
276
  * log('map')
277
277
  */
278
278
  params.index = index
@@ -290,12 +290,12 @@ export function mapTransformByIndex (rootSchema, values, params) {
290
290
  * @returns {(entries: [key: string, schema: SchemaType]) => ZashikiType}
291
291
  */
292
292
  export function mapTransformByKey (rootSchema, values, params) {
293
- /**
293
+ /*
294
294
  * log('mapTransformByKey')
295
295
  */
296
296
 
297
297
  return function map ([key, schema]) {
298
- /**
298
+ /*
299
299
  * log('map')
300
300
  */
301
301
  params.key = key
@@ -314,7 +314,7 @@ export function mapTransformByKey (rootSchema, values, params) {
314
314
  * @returns {ZashikiType}
315
315
  */
316
316
  export function getTransformByKey (schema, rootSchema, values, params) {
317
- /**
317
+ /*
318
318
  * log('getTransformByKey')
319
319
  */
320
320
 
@@ -341,7 +341,7 @@ export function getTransformByKey (schema, rootSchema, values, params) {
341
341
  * @returns {ZashikiType}
342
342
  */
343
343
  export function getTransformByIndex (schema, rootSchema, values, params) {
344
- /**
344
+ /*
345
345
  * log('getTransformByIndex')
346
346
  */
347
347
 
@@ -375,8 +375,8 @@ export function getTransformByIndex (schema, rootSchema, values, params) {
375
375
  parentUri = '#/'
376
376
  } = params
377
377
 
378
- if (parentUri in values) { // Reflect.has(values, parentUri)) {
379
- const value = values[parentUri] // Reflect.get(values, parentUri)
378
+ if (parentUri in values) {
379
+ const value = values[parentUri]
380
380
 
381
381
  if (isPrimitive(value)) {
382
382
  const {
@@ -404,8 +404,8 @@ export function getTransformByIndex (schema, rootSchema, values, params) {
404
404
  index = 0
405
405
  } = params
406
406
 
407
- if (index in value) { // Reflect.has(value, index)) {
408
- const v = value[index] // Reflect.get(value, index)
407
+ if (index in value) {
408
+ const v = value[index]
409
409
 
410
410
  const uri = getUri(parentUri, index)
411
411
 
@@ -444,7 +444,7 @@ export function getTransformByIndex (schema, rootSchema, values, params) {
444
444
  * @returns {ZashikiType}
445
445
  */
446
446
  export function transformStringByKeyForEnum (schema, rootSchema, values, params) {
447
- /**
447
+ /*
448
448
  * log('transformStringByKeyForEnum')
449
449
  */
450
450
 
@@ -474,7 +474,7 @@ export function transformStringByKeyForEnum (schema, rootSchema, values, params)
474
474
  * @returns {ZashikiType}
475
475
  */
476
476
  export function transformStringByKeyForAnyOf (schema, rootSchema, values, params) {
477
- /**
477
+ /*
478
478
  * log('transformStringByKeyForAnyOf')
479
479
  */
480
480
 
@@ -509,7 +509,7 @@ export function transformStringByKeyForAnyOf (schema, rootSchema, values, params
509
509
  * @returns {ZashikiType}
510
510
  */
511
511
  export function transformStringByKeyForOneOf (schema, rootSchema, values, params) {
512
- /**
512
+ /*
513
513
  * log('transformStringByKeyForOneOf')
514
514
  */
515
515
 
@@ -540,7 +540,7 @@ export function transformStringByKeyForOneOf (schema, rootSchema, values, params
540
540
  * @returns {ZashikiType}
541
541
  */
542
542
  export function transformStringByKeyForAllOf (schema, rootSchema, values, params) {
543
- /**
543
+ /*
544
544
  * log('transformStringByKeyForAllOf')
545
545
  */
546
546
 
@@ -567,7 +567,7 @@ export function transformStringByKeyForAllOf (schema, rootSchema, values, params
567
567
  * @returns {ZashikiType}
568
568
  */
569
569
  export function transformStringByIndexForEnum (schema, rootSchema, values, params) {
570
- /**
570
+ /*
571
571
  * log('transformStringByIndexForEnum')
572
572
  */
573
573
 
@@ -597,7 +597,7 @@ export function transformStringByIndexForEnum (schema, rootSchema, values, param
597
597
  * @returns {ZashikiType}
598
598
  */
599
599
  export function transformStringByIndexForAnyOf (schema, rootSchema, values, params) {
600
- /**
600
+ /*
601
601
  * log('transformStringByIndexForAnyOf')
602
602
  */
603
603
 
@@ -628,7 +628,7 @@ export function transformStringByIndexForAnyOf (schema, rootSchema, values, para
628
628
  * @returns {ZashikiType}
629
629
  */
630
630
  export function transformStringByIndexForOneOf (schema, rootSchema, values, params) {
631
- /**
631
+ /*
632
632
  * log('transformStringByIndexForOneOf')
633
633
  */
634
634
 
@@ -659,7 +659,7 @@ export function transformStringByIndexForOneOf (schema, rootSchema, values, para
659
659
  * @returns {ZashikiType}
660
660
  */
661
661
  export function transformStringByIndexForAllOf (schema, rootSchema, values, params) {
662
- /**
662
+ /*
663
663
  * log('transformStringByIndexForAllOf')
664
664
  */
665
665
 
@@ -686,7 +686,7 @@ export function transformStringByIndexForAllOf (schema, rootSchema, values, para
686
686
  * @returns {ZashikiType}
687
687
  */
688
688
  export function transformStringForEnum (schema, rootSchema, values, params) {
689
- /**
689
+ /*
690
690
  * log('transformStringForEnum')
691
691
  */
692
692
 
@@ -713,7 +713,7 @@ export function transformStringForEnum (schema, rootSchema, values, params) {
713
713
  * @returns {ZashikiType}
714
714
  */
715
715
  export function transformStringForAnyOf (schema, rootSchema, values, params) {
716
- /**
716
+ /*
717
717
  * log('transformStringForAnyOf')
718
718
  */
719
719
 
@@ -741,7 +741,7 @@ export function transformStringForAnyOf (schema, rootSchema, values, params) {
741
741
  * @returns {ZashikiType}
742
742
  */
743
743
  export function transformStringForOneOf (schema, rootSchema, values, params) {
744
- /**
744
+ /*
745
745
  * log('transformStringForOneOf')
746
746
  */
747
747
 
@@ -769,7 +769,7 @@ export function transformStringForOneOf (schema, rootSchema, values, params) {
769
769
  * @returns {ZashikiType}
770
770
  */
771
771
  export function transformStringForAllOf (schema, rootSchema, values, params) {
772
- /**
772
+ /*
773
773
  * log('transformStringForAllOf')
774
774
  */
775
775
 
@@ -796,7 +796,7 @@ export function transformStringForAllOf (schema, rootSchema, values, params) {
796
796
  * @returns {ZashikiType}
797
797
  */
798
798
  export function transformNumberByKeyForEnum (schema, rootSchema, values, params) {
799
- /**
799
+ /*
800
800
  * log('transformNumberByKeyForEnum')
801
801
  */
802
802
 
@@ -826,7 +826,7 @@ export function transformNumberByKeyForEnum (schema, rootSchema, values, params)
826
826
  * @returns {ZashikiType}
827
827
  */
828
828
  export function transformNumberByKeyForAnyOf (schema, rootSchema, values, params) {
829
- /**
829
+ /*
830
830
  * log('transformNumberByKeyForAnyOf')
831
831
  */
832
832
 
@@ -857,7 +857,7 @@ export function transformNumberByKeyForAnyOf (schema, rootSchema, values, params
857
857
  * @returns {ZashikiType}
858
858
  */
859
859
  export function transformNumberByKeyForOneOf (schema, rootSchema, values, params) {
860
- /**
860
+ /*
861
861
  * log('transformNumberByKeyForOneOf')
862
862
  */
863
863
 
@@ -888,7 +888,7 @@ export function transformNumberByKeyForOneOf (schema, rootSchema, values, params
888
888
  * @returns {ZashikiType}
889
889
  */
890
890
  export function transformNumberByKeyForAllOf (schema, rootSchema, values, params) {
891
- /**
891
+ /*
892
892
  * log('transformNumberByKeyForAllOf')
893
893
  */
894
894
 
@@ -915,7 +915,7 @@ export function transformNumberByKeyForAllOf (schema, rootSchema, values, params
915
915
  * @returns {ZashikiType}
916
916
  */
917
917
  export function transformNumberByIndexForEnum (schema, rootSchema, values, params) {
918
- /**
918
+ /*
919
919
  * log('transformNumberByIndexForEnum')
920
920
  */
921
921
 
@@ -945,7 +945,7 @@ export function transformNumberByIndexForEnum (schema, rootSchema, values, param
945
945
  * @returns {ZashikiType}
946
946
  */
947
947
  export function transformNumberByIndexForAnyOf (schema, rootSchema, values, params) {
948
- /**
948
+ /*
949
949
  * log('transformNumberByIndexForAnyOf')
950
950
  */
951
951
 
@@ -976,7 +976,7 @@ export function transformNumberByIndexForAnyOf (schema, rootSchema, values, para
976
976
  * @returns {ZashikiType}
977
977
  */
978
978
  export function transformNumberByIndexForOneOf (schema, rootSchema, values, params) {
979
- /**
979
+ /*
980
980
  * log('transformNumberByIndexForOneOf')
981
981
  */
982
982
 
@@ -1007,7 +1007,7 @@ export function transformNumberByIndexForOneOf (schema, rootSchema, values, para
1007
1007
  * @returns {ZashikiType}
1008
1008
  */
1009
1009
  export function transformNumberByIndexForAllOf (schema, rootSchema, values, params) {
1010
- /**
1010
+ /*
1011
1011
  * log('transformNumberByIndexForAllOf')
1012
1012
  */
1013
1013
 
@@ -1034,7 +1034,7 @@ export function transformNumberByIndexForAllOf (schema, rootSchema, values, para
1034
1034
  * @returns {ZashikiType}
1035
1035
  */
1036
1036
  export function transformNumberForEnum (schema, rootSchema, values, params) {
1037
- /**
1037
+ /*
1038
1038
  * log('transformNumberForEnum')
1039
1039
  */
1040
1040
 
@@ -1061,7 +1061,7 @@ export function transformNumberForEnum (schema, rootSchema, values, params) {
1061
1061
  * @returns {ZashikiType}
1062
1062
  */
1063
1063
  export function transformNumberForAnyOf (schema, rootSchema, values, params) {
1064
- /**
1064
+ /*
1065
1065
  * log('transformNumberForAnyOf')
1066
1066
  */
1067
1067
 
@@ -1089,7 +1089,7 @@ export function transformNumberForAnyOf (schema, rootSchema, values, params) {
1089
1089
  * @returns {ZashikiType}
1090
1090
  */
1091
1091
  export function transformNumberForOneOf (schema, rootSchema, values, params) {
1092
- /**
1092
+ /*
1093
1093
  * log('transformNumberForOneOf')
1094
1094
  */
1095
1095
 
@@ -1117,7 +1117,7 @@ export function transformNumberForOneOf (schema, rootSchema, values, params) {
1117
1117
  * @returns {ZashikiType}
1118
1118
  */
1119
1119
  export function transformNumberForAllOf (schema, rootSchema, values, params) {
1120
- /**
1120
+ /*
1121
1121
  * log('transformNumberForAllOf')
1122
1122
  */
1123
1123
 
@@ -1144,7 +1144,7 @@ export function transformNumberForAllOf (schema, rootSchema, values, params) {
1144
1144
  * @returns {ZashikiType}
1145
1145
  */
1146
1146
  export function transformArrayByKeyForEnum (schema, rootSchema, values, params) {
1147
- /**
1147
+ /*
1148
1148
  * log('transformArrayByKeyForEnum')
1149
1149
  */
1150
1150
 
@@ -1174,7 +1174,7 @@ export function transformArrayByKeyForEnum (schema, rootSchema, values, params)
1174
1174
  * @returns {ZashikiType}
1175
1175
  */
1176
1176
  export function transformArrayByKeyForAnyOf (schema, rootSchema, values, params) {
1177
- /**
1177
+ /*
1178
1178
  * log('transformArrayByKeyForAnyOf')
1179
1179
  */
1180
1180
 
@@ -1205,7 +1205,7 @@ export function transformArrayByKeyForAnyOf (schema, rootSchema, values, params)
1205
1205
  * @returns {ZashikiType}
1206
1206
  */
1207
1207
  export function transformArrayByKeyForOneOf (schema, rootSchema, values, params) {
1208
- /**
1208
+ /*
1209
1209
  * log('transformArrayByKeyForOneOf')
1210
1210
  */
1211
1211
 
@@ -1236,7 +1236,7 @@ export function transformArrayByKeyForOneOf (schema, rootSchema, values, params)
1236
1236
  * @returns {ZashikiType}
1237
1237
  */
1238
1238
  export function transformArrayByKeyForAllOf (schema, rootSchema, values, params) {
1239
- /**
1239
+ /*
1240
1240
  * log('transformArrayByKeyForAllOf')
1241
1241
  */
1242
1242
 
@@ -1263,7 +1263,7 @@ export function transformArrayByKeyForAllOf (schema, rootSchema, values, params)
1263
1263
  * @returns {ZashikiType}
1264
1264
  */
1265
1265
  export function transformArrayByIndexForEnum (schema, rootSchema, values, params) {
1266
- /**
1266
+ /*
1267
1267
  * log('transformArrayByIndexForEnum')
1268
1268
  */
1269
1269
 
@@ -1293,7 +1293,7 @@ export function transformArrayByIndexForEnum (schema, rootSchema, values, params
1293
1293
  * @returns {ZashikiType}
1294
1294
  */
1295
1295
  export function transformArrayByIndexForAnyOf (schema, rootSchema, values, params) {
1296
- /**
1296
+ /*
1297
1297
  * log('transformArrayByIndexForAnyOf')
1298
1298
  */
1299
1299
 
@@ -1324,7 +1324,7 @@ export function transformArrayByIndexForAnyOf (schema, rootSchema, values, param
1324
1324
  * @returns {ZashikiType}
1325
1325
  */
1326
1326
  export function transformArrayByIndexForOneOf (schema, rootSchema, values, params) {
1327
- /**
1327
+ /*
1328
1328
  * log('transformArrayByIndexForOneOf')
1329
1329
  */
1330
1330
 
@@ -1355,7 +1355,7 @@ export function transformArrayByIndexForOneOf (schema, rootSchema, values, param
1355
1355
  * @returns {ZashikiType}
1356
1356
  */
1357
1357
  export function transformArrayByIndexForAllOf (schema, rootSchema, values, params) {
1358
- /**
1358
+ /*
1359
1359
  * log('transformArrayByIndexForAllOf')
1360
1360
  */
1361
1361
 
@@ -1382,7 +1382,7 @@ export function transformArrayByIndexForAllOf (schema, rootSchema, values, param
1382
1382
  * @returns {ZashikiType}
1383
1383
  */
1384
1384
  export function transformArrayForEnum (schema, rootSchema, values, params) {
1385
- /**
1385
+ /*
1386
1386
  * log('transformArrayForEnum')
1387
1387
  */
1388
1388
 
@@ -1409,7 +1409,7 @@ export function transformArrayForEnum (schema, rootSchema, values, params) {
1409
1409
  * @returns {ZashikiType}
1410
1410
  */
1411
1411
  export function transformArrayForAnyOf (schema, rootSchema, values, params) {
1412
- /**
1412
+ /*
1413
1413
  * log('transformArrayForAnyOf')
1414
1414
  */
1415
1415
 
@@ -1437,7 +1437,7 @@ export function transformArrayForAnyOf (schema, rootSchema, values, params) {
1437
1437
  * @returns {ZashikiType}
1438
1438
  */
1439
1439
  export function transformArrayForOneOf (schema, rootSchema, values, params) {
1440
- /**
1440
+ /*
1441
1441
  * log('transformArrayForOneOf')
1442
1442
  */
1443
1443
 
@@ -1465,7 +1465,7 @@ export function transformArrayForOneOf (schema, rootSchema, values, params) {
1465
1465
  * @returns {ZashikiType}
1466
1466
  */
1467
1467
  export function transformArrayForAllOf (schema, rootSchema, values, params) {
1468
- /**
1468
+ /*
1469
1469
  * log('transformArrayForAllOf')
1470
1470
  */
1471
1471
 
@@ -1520,7 +1520,7 @@ export function transformArrayForAllOf (schema, rootSchema, values, params) {
1520
1520
  * @returns {ZashikiType}
1521
1521
  */
1522
1522
  export function transformObjectByKeyForEnum (schema, rootSchema, values, params) {
1523
- /**
1523
+ /*
1524
1524
  * log('transformObjectByKeyForEnum')
1525
1525
  */
1526
1526
 
@@ -1550,7 +1550,7 @@ export function transformObjectByKeyForEnum (schema, rootSchema, values, params)
1550
1550
  * @returns {ZashikiType}
1551
1551
  */
1552
1552
  export function transformObjectByKeyForAnyOf (schema, rootSchema, values, params) {
1553
- /**
1553
+ /*
1554
1554
  * log('transformObjectByKeyForAnyOf')
1555
1555
  */
1556
1556
 
@@ -1581,7 +1581,7 @@ export function transformObjectByKeyForAnyOf (schema, rootSchema, values, params
1581
1581
  * @returns {ZashikiType}
1582
1582
  */
1583
1583
  export function transformObjectByKeyForOneOf (schema, rootSchema, values, params) {
1584
- /**
1584
+ /*
1585
1585
  * log('transformObjectByKeyForOneOf')
1586
1586
  */
1587
1587
 
@@ -1612,7 +1612,7 @@ export function transformObjectByKeyForOneOf (schema, rootSchema, values, params
1612
1612
  * @returns {ZashikiType}
1613
1613
  */
1614
1614
  export function transformObjectByKeyForAllOf (schema, rootSchema, values, params) {
1615
- /**
1615
+ /*
1616
1616
  * log('transformObjectByKeyForAllOf')
1617
1617
  */
1618
1618
 
@@ -1639,7 +1639,7 @@ export function transformObjectByKeyForAllOf (schema, rootSchema, values, params
1639
1639
  * @returns {ZashikiType}
1640
1640
  */
1641
1641
  export function transformObjectByIndexForEnum (schema, rootSchema, values, params) {
1642
- /**
1642
+ /*
1643
1643
  * log('transformObjectByIndexForEnum')
1644
1644
  */
1645
1645
 
@@ -1669,7 +1669,7 @@ export function transformObjectByIndexForEnum (schema, rootSchema, values, param
1669
1669
  * @returns {ZashikiType}
1670
1670
  */
1671
1671
  export function transformObjectByIndexForAnyOf (schema, rootSchema, values, params) {
1672
- /**
1672
+ /*
1673
1673
  * log('transformObjectByIndexForAnyOf')
1674
1674
  */
1675
1675
 
@@ -1700,7 +1700,7 @@ export function transformObjectByIndexForAnyOf (schema, rootSchema, values, para
1700
1700
  * @returns {ZashikiType}
1701
1701
  */
1702
1702
  export function transformObjectByIndexForOneOf (schema, rootSchema, values, params) {
1703
- /**
1703
+ /*
1704
1704
  * log('transformObjectByIndexForOneOf')
1705
1705
  */
1706
1706
 
@@ -1731,7 +1731,7 @@ export function transformObjectByIndexForOneOf (schema, rootSchema, values, para
1731
1731
  * @returns {ZashikiType}
1732
1732
  */
1733
1733
  export function transformObjectByIndexForAllOf (schema, rootSchema, values, params) {
1734
- /**
1734
+ /*
1735
1735
  * log('transformObjectByIndexForAllOf')
1736
1736
  */
1737
1737
 
@@ -1758,7 +1758,7 @@ export function transformObjectByIndexForAllOf (schema, rootSchema, values, para
1758
1758
  * @returns {ZashikiType}
1759
1759
  */
1760
1760
  export function transformObjectForEnum (schema, rootSchema, values, params) {
1761
- /**
1761
+ /*
1762
1762
  * log('transformObjectForEnum')
1763
1763
  */
1764
1764
 
@@ -1785,7 +1785,7 @@ export function transformObjectForEnum (schema, rootSchema, values, params) {
1785
1785
  * @returns {ZashikiType}
1786
1786
  */
1787
1787
  export function transformObjectForAnyOf (schema, rootSchema, values, params) {
1788
- /**
1788
+ /*
1789
1789
  * log('transformObjectForAnyOf')
1790
1790
  */
1791
1791
 
@@ -1813,7 +1813,7 @@ export function transformObjectForAnyOf (schema, rootSchema, values, params) {
1813
1813
  * @returns {ZashikiType}
1814
1814
  */
1815
1815
  export function transformObjectForOneOf (schema, rootSchema, values, params) {
1816
- /**
1816
+ /*
1817
1817
  * log('transformObjectForOneOf')
1818
1818
  */
1819
1819
 
@@ -1841,7 +1841,7 @@ export function transformObjectForOneOf (schema, rootSchema, values, params) {
1841
1841
  * @returns {ZashikiType}
1842
1842
  */
1843
1843
  export function transformObjectForAllOf (schema, rootSchema, values, params) { // As-is
1844
- /**
1844
+ /*
1845
1845
  * log('transformObjectForAllOf')
1846
1846
  */
1847
1847
 
@@ -1883,7 +1883,7 @@ export function transformObjectForAllOf (schema, rootSchema, values, params) { /
1883
1883
  * @returns {ZashikiType}
1884
1884
  */
1885
1885
  export function transformBooleanByKeyForEnum (schema, rootSchema, values, params) {
1886
- /**
1886
+ /*
1887
1887
  * log('transformBooleanByKeyForEnum')
1888
1888
  */
1889
1889
 
@@ -1913,7 +1913,7 @@ export function transformBooleanByKeyForEnum (schema, rootSchema, values, params
1913
1913
  * @returns {ZashikiType}
1914
1914
  */
1915
1915
  export function transformBooleanByKeyForAnyOf (schema, rootSchema, values, params) {
1916
- /**
1916
+ /*
1917
1917
  * log('transformBooleanByKeyForAnyOf')
1918
1918
  */
1919
1919
 
@@ -1944,7 +1944,7 @@ export function transformBooleanByKeyForAnyOf (schema, rootSchema, values, param
1944
1944
  * @returns {ZashikiType}
1945
1945
  */
1946
1946
  export function transformBooleanByKeyForOneOf (schema, rootSchema, values, params) {
1947
- /**
1947
+ /*
1948
1948
  * log('transformBooleanByKeyForOneOf')
1949
1949
  */
1950
1950
 
@@ -1975,7 +1975,7 @@ export function transformBooleanByKeyForOneOf (schema, rootSchema, values, param
1975
1975
  * @returns {ZashikiType}
1976
1976
  */
1977
1977
  export function transformBooleanByKeyForAllOf (schema, rootSchema, values, params) {
1978
- /**
1978
+ /*
1979
1979
  * log('transformBooleanByKeyForAllOf')
1980
1980
  */
1981
1981
 
@@ -2002,7 +2002,7 @@ export function transformBooleanByKeyForAllOf (schema, rootSchema, values, param
2002
2002
  * @returns {ZashikiType}
2003
2003
  */
2004
2004
  export function transformBooleanByIndexForEnum (schema, rootSchema, values, params) {
2005
- /**
2005
+ /*
2006
2006
  * log('transformBooleanByIndexForEnum')
2007
2007
  */
2008
2008
 
@@ -2032,7 +2032,7 @@ export function transformBooleanByIndexForEnum (schema, rootSchema, values, para
2032
2032
  * @returns {ZashikiType}
2033
2033
  */
2034
2034
  export function transformBooleanByIndexForAnyOf (schema, rootSchema, values, params) {
2035
- /**
2035
+ /*
2036
2036
  * log('transformBooleanByIndexForAnyOf')
2037
2037
  */
2038
2038
 
@@ -2063,7 +2063,7 @@ export function transformBooleanByIndexForAnyOf (schema, rootSchema, values, par
2063
2063
  * @returns {ZashikiType}
2064
2064
  */
2065
2065
  export function transformBooleanByIndexForOneOf (schema, rootSchema, values, params) {
2066
- /**
2066
+ /*
2067
2067
  * log('transformBooleanByIndexForOneOf')
2068
2068
  */
2069
2069
 
@@ -2094,7 +2094,7 @@ export function transformBooleanByIndexForOneOf (schema, rootSchema, values, par
2094
2094
  * @returns {ZashikiType}
2095
2095
  */
2096
2096
  export function transformBooleanByIndexForAllOf (schema, rootSchema, values, params) {
2097
- /**
2097
+ /*
2098
2098
  * log('transformBooleanByIndexForAllOf')
2099
2099
  */
2100
2100
 
@@ -2121,7 +2121,7 @@ export function transformBooleanByIndexForAllOf (schema, rootSchema, values, par
2121
2121
  * @returns {ZashikiType}
2122
2122
  */
2123
2123
  export function transformBooleanForEnum (schema, rootSchema, values, params) {
2124
- /**
2124
+ /*
2125
2125
  * log('transformBooleanForEnum')
2126
2126
  */
2127
2127
 
@@ -2148,7 +2148,7 @@ export function transformBooleanForEnum (schema, rootSchema, values, params) {
2148
2148
  * @returns {ZashikiType}
2149
2149
  */
2150
2150
  export function transformBooleanForAnyOf (schema, rootSchema, values, params) {
2151
- /**
2151
+ /*
2152
2152
  * log('transformBooleanForAnyOf')
2153
2153
  */
2154
2154
 
@@ -2176,7 +2176,7 @@ export function transformBooleanForAnyOf (schema, rootSchema, values, params) {
2176
2176
  * @returns {ZashikiType}
2177
2177
  */
2178
2178
  export function transformBooleanForOneOf (schema, rootSchema, values, params) {
2179
- /**
2179
+ /*
2180
2180
  * log('transformBooleanForOneOf')
2181
2181
  */
2182
2182
 
@@ -2204,7 +2204,7 @@ export function transformBooleanForOneOf (schema, rootSchema, values, params) {
2204
2204
  * @returns {ZashikiType}
2205
2205
  */
2206
2206
  export function transformBooleanForAllOf (schema, rootSchema, values, params) {
2207
- /**
2207
+ /*
2208
2208
  * log('transformBooleanForAllOf')
2209
2209
  */
2210
2210
 
@@ -2231,7 +2231,7 @@ export function transformBooleanForAllOf (schema, rootSchema, values, params) {
2231
2231
  * @returns {ZashikiType}
2232
2232
  */
2233
2233
  export function transformNullByKeyForEnum (schema, rootSchema, values, params) {
2234
- /**
2234
+ /*
2235
2235
  * log('transformNullByKeyForEnum')
2236
2236
  */
2237
2237
 
@@ -2261,7 +2261,7 @@ export function transformNullByKeyForEnum (schema, rootSchema, values, params) {
2261
2261
  * @returns {ZashikiType}
2262
2262
  */
2263
2263
  export function transformNullByKeyForAnyOf (schema, rootSchema, values, params) {
2264
- /**
2264
+ /*
2265
2265
  * log('transformNullByKeyForAnyOf')
2266
2266
  */
2267
2267
 
@@ -2292,7 +2292,7 @@ export function transformNullByKeyForAnyOf (schema, rootSchema, values, params)
2292
2292
  * @returns {ZashikiType}
2293
2293
  */
2294
2294
  export function transformNullByKeyForOneOf (schema, rootSchema, values, params) {
2295
- /**
2295
+ /*
2296
2296
  * log('transformNullByKeyForOneOf')
2297
2297
  */
2298
2298
 
@@ -2323,7 +2323,7 @@ export function transformNullByKeyForOneOf (schema, rootSchema, values, params)
2323
2323
  * @returns {ZashikiType}
2324
2324
  */
2325
2325
  export function transformNullByKeyForAllOf (schema, rootSchema, values, params) {
2326
- /**
2326
+ /*
2327
2327
  * log('transformNullByKeyForAllOf')
2328
2328
  */
2329
2329
 
@@ -2350,7 +2350,7 @@ export function transformNullByKeyForAllOf (schema, rootSchema, values, params)
2350
2350
  * @returns {ZashikiType}
2351
2351
  */
2352
2352
  export function transformNullByIndexForEnum (schema, rootSchema, values, params) {
2353
- /**
2353
+ /*
2354
2354
  * log('transformNullByIndexForEnum')
2355
2355
  */
2356
2356
 
@@ -2380,7 +2380,7 @@ export function transformNullByIndexForEnum (schema, rootSchema, values, params)
2380
2380
  * @returns {ZashikiType}
2381
2381
  */
2382
2382
  export function transformNullByIndexForAnyOf (schema, rootSchema, values, params) {
2383
- /**
2383
+ /*
2384
2384
  * log('transformNullByIndexForAnyOf')
2385
2385
  */
2386
2386
 
@@ -2411,7 +2411,7 @@ export function transformNullByIndexForAnyOf (schema, rootSchema, values, params
2411
2411
  * @returns {ZashikiType}
2412
2412
  */
2413
2413
  export function transformNullByIndexForOneOf (schema, rootSchema, values, params) {
2414
- /**
2414
+ /*
2415
2415
  * log('transformNullByIndexForOneOf')
2416
2416
  */
2417
2417
 
@@ -2442,7 +2442,7 @@ export function transformNullByIndexForOneOf (schema, rootSchema, values, params
2442
2442
  * @returns {ZashikiType}
2443
2443
  */
2444
2444
  export function transformNullByIndexForAllOf (schema, rootSchema, values, params) {
2445
- /**
2445
+ /*
2446
2446
  * log('transformNullByIndexForAllOf')
2447
2447
  */
2448
2448
 
@@ -2469,7 +2469,7 @@ export function transformNullByIndexForAllOf (schema, rootSchema, values, params
2469
2469
  * @returns {ZashikiType}
2470
2470
  */
2471
2471
  export function transformNullForEnum (schema, rootSchema, values, params) {
2472
- /**
2472
+ /*
2473
2473
  * log('transformNullForEnum')
2474
2474
  */
2475
2475
 
@@ -2496,7 +2496,7 @@ export function transformNullForEnum (schema, rootSchema, values, params) {
2496
2496
  * @returns {ZashikiType}
2497
2497
  */
2498
2498
  export function transformNullForAnyOf (schema, rootSchema, values, params) {
2499
- /**
2499
+ /*
2500
2500
  * log('transformNullForAnyOf')
2501
2501
  */
2502
2502
 
@@ -2524,7 +2524,7 @@ export function transformNullForAnyOf (schema, rootSchema, values, params) {
2524
2524
  * @returns {ZashikiType}
2525
2525
  */
2526
2526
  export function transformNullForOneOf (schema, rootSchema, values, params) {
2527
- /**
2527
+ /*
2528
2528
  * log('transformNullForOneOf')
2529
2529
  */
2530
2530
 
@@ -2552,7 +2552,7 @@ export function transformNullForOneOf (schema, rootSchema, values, params) {
2552
2552
  * @returns {ZashikiType}
2553
2553
  */
2554
2554
  export function transformNullForAllOf (schema, rootSchema, values, params) {
2555
- /**
2555
+ /*
2556
2556
  * log('transformNullForAllOf')
2557
2557
  */
2558
2558
 
@@ -2579,7 +2579,7 @@ export function transformNullForAllOf (schema, rootSchema, values, params) {
2579
2579
  * @returns {ZashikiType}
2580
2580
  */
2581
2581
  export function transformStringByKey (schema, rootSchema, values, params) {
2582
- /**
2582
+ /*
2583
2583
  * log('transformStringByKey')
2584
2584
  */
2585
2585
 
@@ -2612,7 +2612,7 @@ export function transformStringByKey (schema, rootSchema, values, params) {
2612
2612
  * @returns {ZashikiType}
2613
2613
  */
2614
2614
  export function transformStringByIndex (schema, rootSchema, values, params) {
2615
- /**
2615
+ /*
2616
2616
  * log('transformStringByIndex')
2617
2617
  */
2618
2618
 
@@ -2645,7 +2645,7 @@ export function transformStringByIndex (schema, rootSchema, values, params) {
2645
2645
  * @returns {ZashikiType}
2646
2646
  */
2647
2647
  export function transformNumberByKey (schema, rootSchema, values, params) {
2648
- /**
2648
+ /*
2649
2649
  * log('transformNumberByKey')
2650
2650
  */
2651
2651
 
@@ -2678,7 +2678,7 @@ export function transformNumberByKey (schema, rootSchema, values, params) {
2678
2678
  * @returns {ZashikiType}
2679
2679
  */
2680
2680
  export function transformNumberByIndex (schema, rootSchema, values, params) {
2681
- /**
2681
+ /*
2682
2682
  * log('transformNumberByIndex')
2683
2683
  */
2684
2684
 
@@ -2711,7 +2711,7 @@ export function transformNumberByIndex (schema, rootSchema, values, params) {
2711
2711
  * @returns {ZashikiType}
2712
2712
  */
2713
2713
  export function transformArrayByKey (schema, rootSchema, values, params) {
2714
- /**
2714
+ /*
2715
2715
  * log('transformArrayByKey')
2716
2716
  */
2717
2717
 
@@ -2774,7 +2774,7 @@ export function transformArrayByKey (schema, rootSchema, values, params) {
2774
2774
  * @returns {ZashikiType}
2775
2775
  */
2776
2776
  export function transformArrayByIndex (schema, rootSchema, values, params) {
2777
- /**
2777
+ /*
2778
2778
  * log('transformArrayByIndex')
2779
2779
  */
2780
2780
 
@@ -2837,7 +2837,7 @@ export function transformArrayByIndex (schema, rootSchema, values, params) {
2837
2837
  * @returns {ZashikiType}
2838
2838
  */
2839
2839
  export function transformObjectByKey (schema, rootSchema, values, params) {
2840
- /**
2840
+ /*
2841
2841
  * log('transformObjectByKey')
2842
2842
  */
2843
2843
 
@@ -2886,7 +2886,7 @@ export function transformObjectByKey (schema, rootSchema, values, params) {
2886
2886
  * @returns {ZashikiType}
2887
2887
  */
2888
2888
  export function transformObjectByIndex (schema, rootSchema, values, params) {
2889
- /**
2889
+ /*
2890
2890
  * log('transformObjectByIndex')
2891
2891
  */
2892
2892
 
@@ -2935,7 +2935,7 @@ export function transformObjectByIndex (schema, rootSchema, values, params) {
2935
2935
  * @returns {ZashikiType}
2936
2936
  */
2937
2937
  export function transformBooleanByKey (schema, rootSchema, values, params) {
2938
- /**
2938
+ /*
2939
2939
  * log('transformBooleanByKey')
2940
2940
  */
2941
2941
 
@@ -2968,7 +2968,7 @@ export function transformBooleanByKey (schema, rootSchema, values, params) {
2968
2968
  * @returns {ZashikiType}
2969
2969
  */
2970
2970
  export function transformBooleanByIndex (schema, rootSchema, values, params) {
2971
- /**
2971
+ /*
2972
2972
  * log('transformBooleanByIndex')
2973
2973
  */
2974
2974
 
@@ -3001,7 +3001,7 @@ export function transformBooleanByIndex (schema, rootSchema, values, params) {
3001
3001
  * @returns {ZashikiType}
3002
3002
  */
3003
3003
  export function transformNullByKey (schema, rootSchema, values, params) {
3004
- /**
3004
+ /*
3005
3005
  * log('transformNullByKey')
3006
3006
  */
3007
3007
 
@@ -3034,7 +3034,7 @@ export function transformNullByKey (schema, rootSchema, values, params) {
3034
3034
  * @returns {ZashikiType}
3035
3035
  */
3036
3036
  export function transformNullByIndex (schema, rootSchema, values, params) {
3037
- /**
3037
+ /*
3038
3038
  * log('transformNullByIndex')
3039
3039
  */
3040
3040
 
@@ -3067,7 +3067,7 @@ export function transformNullByIndex (schema, rootSchema, values, params) {
3067
3067
  * @returns {ZashikiType}
3068
3068
  */
3069
3069
  export function transformString (schema, rootSchema, values, params) {
3070
- /**
3070
+ /*
3071
3071
  * log('transformString')
3072
3072
  */
3073
3073
 
@@ -3100,7 +3100,7 @@ export function transformString (schema, rootSchema, values, params) {
3100
3100
  * @returns {ZashikiType}
3101
3101
  */
3102
3102
  export function transformNumber (schema, rootSchema, values, params) {
3103
- /**
3103
+ /*
3104
3104
  * log('transformNumber')
3105
3105
  */
3106
3106
 
@@ -3133,7 +3133,7 @@ export function transformNumber (schema, rootSchema, values, params) {
3133
3133
  * @returns {ZashikiType}
3134
3134
  */
3135
3135
  export function transformArray (schema, rootSchema, values, params) {
3136
- /**
3136
+ /*
3137
3137
  * log('transformArray')
3138
3138
  */
3139
3139
 
@@ -3194,7 +3194,7 @@ export function transformArray (schema, rootSchema, values, params) {
3194
3194
  * @returns {ZashikiType}
3195
3195
  */
3196
3196
  export function transformObject (schema, rootSchema, values, params) {
3197
- /**
3197
+ /*
3198
3198
  * log('transformObject')
3199
3199
  */
3200
3200
 
@@ -3242,7 +3242,7 @@ export function transformObject (schema, rootSchema, values, params) {
3242
3242
  * @returns {ZashikiType}
3243
3243
  */
3244
3244
  export function transformBoolean (schema, rootSchema, values, params) {
3245
- /**
3245
+ /*
3246
3246
  * log('transformBoolean')
3247
3247
  */
3248
3248
 
@@ -3275,7 +3275,7 @@ export function transformBoolean (schema, rootSchema, values, params) {
3275
3275
  * @returns {ZashikiType}
3276
3276
  */
3277
3277
  export function transformNull (schema, rootSchema, values, params) {
3278
- /**
3278
+ /*
3279
3279
  * log('transformNull')
3280
3280
  */
3281
3281
 
@@ -3306,7 +3306,7 @@ export function transformNull (schema, rootSchema, values, params) {
3306
3306
  * @returns {ZashikiType}
3307
3307
  */
3308
3308
  export function transformByKeyForEnum (schema, rootSchema, values, params) {
3309
- /**
3309
+ /*
3310
3310
  * log('transformByKeyForEnum')
3311
3311
  */
3312
3312
 
@@ -3314,7 +3314,9 @@ export function transformByKeyForEnum (schema, rootSchema, values, params) {
3314
3314
  type
3315
3315
  } = schema
3316
3316
 
3317
- // https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
3317
+ /**
3318
+ * @link https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
3319
+ */
3318
3320
  switch (type) {
3319
3321
  case 'string':
3320
3322
  return transformStringByKeyForEnum(schema, rootSchema, values, getParamsByKeyForEnum(schema, rootSchema, values, params))
@@ -3346,7 +3348,7 @@ export function transformByKeyForEnum (schema, rootSchema, values, params) {
3346
3348
  * @returns {ZashikiType}
3347
3349
  */
3348
3350
  export function transformByKeyForAnyOf (schema, rootSchema, values, params) {
3349
- /**
3351
+ /*
3350
3352
  * log('transformByKeyForAnyOf')
3351
3353
  */
3352
3354
 
@@ -3354,7 +3356,9 @@ export function transformByKeyForAnyOf (schema, rootSchema, values, params) {
3354
3356
  type
3355
3357
  } = schema
3356
3358
 
3357
- // https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
3359
+ /**
3360
+ * @link https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
3361
+ */
3358
3362
  switch (type) {
3359
3363
  case 'string':
3360
3364
  return transformStringByKeyForAnyOf(schema, rootSchema, values, getParamsByKeyForAnyOf(schema, rootSchema, values, params))
@@ -3386,7 +3390,7 @@ export function transformByKeyForAnyOf (schema, rootSchema, values, params) {
3386
3390
  * @returns {ZashikiType}
3387
3391
  */
3388
3392
  export function transformByKeyForOneOf (schema, rootSchema, values, params) {
3389
- /**
3393
+ /*
3390
3394
  * log('transformByKeyForOneOf')
3391
3395
  */
3392
3396
 
@@ -3394,7 +3398,9 @@ export function transformByKeyForOneOf (schema, rootSchema, values, params) {
3394
3398
  type
3395
3399
  } = schema
3396
3400
 
3397
- // https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
3401
+ /**
3402
+ * @link https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
3403
+ */
3398
3404
  switch (type) {
3399
3405
  case 'string':
3400
3406
  return transformStringByKeyForOneOf(schema, rootSchema, values, getParamsByKeyForOneOf(schema, rootSchema, values, params))
@@ -3426,7 +3432,7 @@ export function transformByKeyForOneOf (schema, rootSchema, values, params) {
3426
3432
  * @returns {ZashikiType}
3427
3433
  */
3428
3434
  export function transformByIndexForEnum (schema, rootSchema, values, params) {
3429
- /**
3435
+ /*
3430
3436
  * log('transformByIndexForEnum')
3431
3437
  */
3432
3438
 
@@ -3434,7 +3440,9 @@ export function transformByIndexForEnum (schema, rootSchema, values, params) {
3434
3440
  type
3435
3441
  } = schema
3436
3442
 
3437
- // https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
3443
+ /**
3444
+ * @link https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
3445
+ */
3438
3446
  switch (type) {
3439
3447
  case 'string':
3440
3448
  return transformStringByIndexForEnum(schema, rootSchema, values, getParamsByIndexForEnum(schema, rootSchema, values, params))
@@ -3466,7 +3474,7 @@ export function transformByIndexForEnum (schema, rootSchema, values, params) {
3466
3474
  * @returns {ZashikiType}
3467
3475
  */
3468
3476
  export function transformByIndexForAnyOf (schema, rootSchema, values, params) {
3469
- /**
3477
+ /*
3470
3478
  * log('transformByIndexForAnyOf')
3471
3479
  */
3472
3480
 
@@ -3474,7 +3482,9 @@ export function transformByIndexForAnyOf (schema, rootSchema, values, params) {
3474
3482
  type
3475
3483
  } = schema
3476
3484
 
3477
- // https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
3485
+ /**
3486
+ * @link https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
3487
+ */
3478
3488
  switch (type) {
3479
3489
  case 'string':
3480
3490
  return transformStringByIndexForAnyOf(schema, rootSchema, values, getParamsByIndexForAnyOf(schema, rootSchema, values, params))
@@ -3506,7 +3516,7 @@ export function transformByIndexForAnyOf (schema, rootSchema, values, params) {
3506
3516
  * @returns {ZashikiType}
3507
3517
  */
3508
3518
  export function transformByIndexForOneOf (schema, rootSchema, values, params) {
3509
- /**
3519
+ /*
3510
3520
  * log('transformByIndexForOneOf')
3511
3521
  */
3512
3522
 
@@ -3514,7 +3524,9 @@ export function transformByIndexForOneOf (schema, rootSchema, values, params) {
3514
3524
  type
3515
3525
  } = schema
3516
3526
 
3517
- // https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
3527
+ /**
3528
+ * @link https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
3529
+ */
3518
3530
  switch (type) {
3519
3531
  case 'string':
3520
3532
  return transformStringByIndexForOneOf(schema, rootSchema, values, getParamsByIndexForOneOf(schema, rootSchema, values, params))
@@ -3546,7 +3558,7 @@ export function transformByIndexForOneOf (schema, rootSchema, values, params) {
3546
3558
  * @returns {ZashikiType}
3547
3559
  */
3548
3560
  export function transformByKey (schema = {}, rootSchema = schema, values = {}, params = {}) {
3549
- /**
3561
+ /*
3550
3562
  * log('transformByKey')
3551
3563
  */
3552
3564
 
@@ -3554,7 +3566,9 @@ export function transformByKey (schema = {}, rootSchema = schema, values = {}, p
3554
3566
  type
3555
3567
  } = schema
3556
3568
 
3557
- // https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
3569
+ /**
3570
+ * @link https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
3571
+ */
3558
3572
  switch (type) {
3559
3573
  case 'string':
3560
3574
  return transformStringByKey(schema, rootSchema, values, params)
@@ -3586,7 +3600,7 @@ export function transformByKey (schema = {}, rootSchema = schema, values = {}, p
3586
3600
  * @returns {ZashikiType}
3587
3601
  */
3588
3602
  export function transformByIndex (schema = {}, rootSchema = schema, values = {}, params = {}) {
3589
- /**
3603
+ /*
3590
3604
  * log('transformByIndex')
3591
3605
  */
3592
3606
 
@@ -3594,7 +3608,9 @@ export function transformByIndex (schema = {}, rootSchema = schema, values = {},
3594
3608
  type
3595
3609
  } = schema
3596
3610
 
3597
- // https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
3611
+ /**
3612
+ * @link https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
3613
+ */
3598
3614
  switch (type) {
3599
3615
  case 'string':
3600
3616
  return transformStringByIndex(schema, rootSchema, values, params)
@@ -3632,7 +3648,9 @@ export default function toZashiki (schema = {}, rootSchema = {}, values = {}, pa
3632
3648
  type
3633
3649
  } = schema
3634
3650
 
3635
- // https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
3651
+ /**
3652
+ * @link https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.4.2.1
3653
+ */
3636
3654
  switch (type) {
3637
3655
  case 'string':
3638
3656
  return transformString(schema, rootSchema, values, params)