@fgv/ts-utils 4.4.0 → 4.5.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 (102) hide show
  1. package/dist/ts-utils.d.ts +4247 -3635
  2. package/dist/tsdoc-metadata.json +1 -1
  3. package/lib/index.d.ts +3 -2
  4. package/lib/index.d.ts.map +1 -1
  5. package/lib/index.js +6 -3
  6. package/lib/index.js.map +1 -1
  7. package/lib/packlets/base/utils.d.ts.map +1 -1
  8. package/lib/packlets/base/utils.js +0 -1
  9. package/lib/packlets/base/utils.js.map +1 -1
  10. package/lib/packlets/collections/collectible.d.ts +49 -7
  11. package/lib/packlets/collections/collectible.d.ts.map +1 -1
  12. package/lib/packlets/collections/collectible.js +0 -9
  13. package/lib/packlets/collections/collectible.js.map +1 -1
  14. package/lib/packlets/collections/collector.d.ts +70 -135
  15. package/lib/packlets/collections/collector.d.ts.map +1 -1
  16. package/lib/packlets/collections/collector.js +80 -91
  17. package/lib/packlets/collections/collector.js.map +1 -1
  18. package/lib/packlets/collections/collectorValidator.d.ts +89 -0
  19. package/lib/packlets/collections/collectorValidator.d.ts.map +1 -0
  20. package/lib/packlets/collections/collectorValidator.js +98 -0
  21. package/lib/packlets/collections/collectorValidator.js.map +1 -0
  22. package/lib/packlets/collections/convertingCollector.d.ts +80 -45
  23. package/lib/packlets/collections/convertingCollector.d.ts.map +1 -1
  24. package/lib/packlets/collections/convertingCollector.js +74 -19
  25. package/lib/packlets/collections/convertingCollector.js.map +1 -1
  26. package/lib/packlets/collections/convertingCollectorValidator.d.ts +69 -0
  27. package/lib/packlets/collections/convertingCollectorValidator.d.ts.map +1 -0
  28. package/lib/packlets/collections/{collectorConverter.js → convertingCollectorValidator.js} +10 -9
  29. package/lib/packlets/collections/convertingCollectorValidator.js.map +1 -0
  30. package/lib/packlets/collections/index.d.ts +7 -5
  31. package/lib/packlets/collections/index.d.ts.map +1 -1
  32. package/lib/packlets/collections/index.js +7 -5
  33. package/lib/packlets/collections/index.js.map +1 -1
  34. package/lib/packlets/collections/readonlyResultMap.d.ts +0 -4
  35. package/lib/packlets/collections/readonlyResultMap.d.ts.map +1 -1
  36. package/lib/packlets/collections/readonlyResultMap.js.map +1 -1
  37. package/lib/packlets/collections/resultMap.d.ts +0 -4
  38. package/lib/packlets/collections/resultMap.d.ts.map +1 -1
  39. package/lib/packlets/collections/resultMap.js +0 -6
  40. package/lib/packlets/collections/resultMap.js.map +1 -1
  41. package/lib/packlets/collections/{resultMapConverter.d.ts → resultMapValidator.d.ts} +11 -11
  42. package/lib/packlets/collections/{resultMapConverter.d.ts.map → resultMapValidator.d.ts.map} +1 -1
  43. package/lib/packlets/collections/{resultMapConverter.js → resultMapValidator.js} +6 -6
  44. package/lib/packlets/collections/{resultMapConverter.js.map → resultMapValidator.js.map} +1 -1
  45. package/lib/packlets/collections/validatingCollector.d.ts +69 -0
  46. package/lib/packlets/collections/validatingCollector.d.ts.map +1 -0
  47. package/lib/packlets/collections/validatingCollector.js +67 -0
  48. package/lib/packlets/collections/validatingCollector.js.map +1 -0
  49. package/lib/packlets/collections/validatingConvertingCollector.d.ts +59 -0
  50. package/lib/packlets/collections/validatingConvertingCollector.d.ts.map +1 -0
  51. package/lib/packlets/collections/validatingConvertingCollector.js +68 -0
  52. package/lib/packlets/collections/validatingConvertingCollector.js.map +1 -0
  53. package/lib/packlets/collections/{convertingResultMap.d.ts → validatingResultMap.d.ts} +16 -16
  54. package/lib/packlets/collections/{convertingResultMap.d.ts.map → validatingResultMap.d.ts.map} +1 -1
  55. package/lib/packlets/collections/{convertingResultMap.js → validatingResultMap.js} +11 -11
  56. package/lib/packlets/collections/{convertingResultMap.js.map → validatingResultMap.js.map} +1 -1
  57. package/lib/packlets/file-tree/directoryItem.d.ts +47 -0
  58. package/lib/packlets/file-tree/directoryItem.d.ts.map +1 -0
  59. package/lib/packlets/file-tree/directoryItem.js +71 -0
  60. package/lib/packlets/file-tree/directoryItem.js.map +1 -0
  61. package/lib/packlets/file-tree/fileItem.d.ts +64 -0
  62. package/lib/packlets/file-tree/fileItem.d.ts.map +1 -0
  63. package/lib/packlets/file-tree/fileItem.js +93 -0
  64. package/lib/packlets/file-tree/fileItem.js.map +1 -0
  65. package/lib/packlets/file-tree/fileTree.d.ts +84 -0
  66. package/lib/packlets/file-tree/fileTree.d.ts.map +1 -0
  67. package/lib/packlets/file-tree/fileTree.js +135 -0
  68. package/lib/packlets/file-tree/fileTree.js.map +1 -0
  69. package/lib/packlets/file-tree/fileTreeAccessors.d.ts +134 -0
  70. package/lib/packlets/file-tree/fileTreeAccessors.d.ts.map +1 -0
  71. package/lib/packlets/file-tree/fileTreeAccessors.js +24 -0
  72. package/lib/packlets/file-tree/fileTreeAccessors.js.map +1 -0
  73. package/lib/packlets/file-tree/fsTree.d.ts +45 -0
  74. package/lib/packlets/file-tree/fsTree.d.ts.map +1 -0
  75. package/lib/packlets/file-tree/fsTree.js +116 -0
  76. package/lib/packlets/file-tree/fsTree.js.map +1 -0
  77. package/lib/packlets/file-tree/in-memory/inMemoryTree.d.ts +67 -0
  78. package/lib/packlets/file-tree/in-memory/inMemoryTree.d.ts.map +1 -0
  79. package/lib/packlets/file-tree/in-memory/inMemoryTree.js +150 -0
  80. package/lib/packlets/file-tree/in-memory/inMemoryTree.js.map +1 -0
  81. package/lib/packlets/file-tree/in-memory/index.d.ts +2 -0
  82. package/lib/packlets/file-tree/in-memory/index.d.ts.map +1 -0
  83. package/lib/packlets/file-tree/in-memory/index.js +39 -0
  84. package/lib/packlets/file-tree/in-memory/index.js.map +1 -0
  85. package/lib/packlets/file-tree/in-memory/treeBuilder.d.ts +106 -0
  86. package/lib/packlets/file-tree/in-memory/treeBuilder.d.ts.map +1 -0
  87. package/lib/packlets/file-tree/in-memory/treeBuilder.js +170 -0
  88. package/lib/packlets/file-tree/in-memory/treeBuilder.js.map +1 -0
  89. package/lib/packlets/file-tree/index.d.ts +8 -0
  90. package/lib/packlets/file-tree/index.d.ts.map +1 -0
  91. package/lib/packlets/file-tree/index.js +46 -0
  92. package/lib/packlets/file-tree/index.js.map +1 -0
  93. package/lib/packlets/hash/crcNormalizer.js +1 -1
  94. package/lib/packlets/hash/crcNormalizer.js.map +1 -1
  95. package/package.json +15 -15
  96. package/lib/packlets/collections/collectorConverter.d.ts +0 -86
  97. package/lib/packlets/collections/collectorConverter.d.ts.map +0 -1
  98. package/lib/packlets/collections/collectorConverter.js.map +0 -1
  99. package/lib/packlets/collections/collectors.d.ts +0 -31
  100. package/lib/packlets/collections/collectors.d.ts.map +0 -1
  101. package/lib/packlets/collections/collectors.js +0 -54
  102. package/lib/packlets/collections/collectors.js.map +0 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.