lakutata 2.0.34 → 2.0.36

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 (360) hide show
  1. package/com/cacher.cjs +229 -0
  2. package/com/cacher.d.ts +514 -0
  3. package/com/cacher.mjs +203 -0
  4. package/com/database.cjs +11 -5
  5. package/com/database.mjs +11 -5
  6. package/com/docker.cjs +26 -18
  7. package/com/docker.mjs +22 -14
  8. package/com/entrypoint.cjs +4 -2
  9. package/com/entrypoint.mjs +4 -2
  10. package/com/logger.cjs +9 -3
  11. package/com/logger.mjs +9 -3
  12. package/decorator/ctrl.cjs +4 -2
  13. package/decorator/ctrl.mjs +4 -2
  14. package/decorator/di.cjs +3 -1
  15. package/decorator/di.mjs +3 -1
  16. package/decorator/dto.cjs +3 -1
  17. package/decorator/dto.mjs +3 -1
  18. package/decorator/orm.cjs +27 -21
  19. package/decorator/orm.mjs +11 -5
  20. package/helper.cjs +17 -15
  21. package/helper.mjs +4 -2
  22. package/lakutata.cjs +14 -8
  23. package/lakutata.mjs +10 -4
  24. package/orm.cjs +25 -19
  25. package/orm.mjs +22 -16
  26. package/package.json +6 -1
  27. package/provider/database.cjs +11 -5
  28. package/provider/database.mjs +11 -5
  29. package/provider/passwordHash.cjs +3 -1
  30. package/provider/passwordHash.mjs +3 -1
  31. package/src/components/Database.cjs +11 -5
  32. package/src/components/Database.mjs +11 -5
  33. package/src/components/Logger.cjs +9 -3
  34. package/src/components/Logger.mjs +9 -3
  35. package/src/components/cacher/Cacher.cjs +734 -0
  36. package/src/components/cacher/Cacher.mjs +720 -0
  37. package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +3094 -0
  38. package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +3066 -0
  39. package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.cjs +33 -0
  40. package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.mjs +35 -0
  41. package/src/components/cacher/adapters/CreateMongoCacheAdapter.cjs +38 -0
  42. package/src/components/cacher/adapters/CreateMongoCacheAdapter.mjs +40 -0
  43. package/src/components/cacher/adapters/CreateMysqlCacheAdapter.cjs +31 -0
  44. package/src/components/cacher/adapters/CreateMysqlCacheAdapter.mjs +33 -0
  45. package/src/components/cacher/adapters/CreatePostgresCacheAdapter.cjs +40 -0
  46. package/src/components/cacher/adapters/CreatePostgresCacheAdapter.mjs +42 -0
  47. package/src/components/cacher/adapters/CreateRedisCacheAdapter.cjs +43 -0
  48. package/src/components/cacher/adapters/CreateRedisCacheAdapter.mjs +45 -0
  49. package/src/components/cacher/adapters/CreateSqliteCacheAdapter.cjs +35 -0
  50. package/src/components/cacher/adapters/CreateSqliteCacheAdapter.mjs +37 -0
  51. package/src/components/cacher/options/CacherOptions.cjs +95 -0
  52. package/src/components/cacher/options/CacherOptions.mjs +89 -0
  53. package/src/components/cacher/options/FileCacheOptions.cjs +79 -0
  54. package/src/components/cacher/options/FileCacheOptions.mjs +73 -0
  55. package/src/components/cacher/options/MemcacheCacheOptions.cjs +81 -0
  56. package/src/components/cacher/options/MemcacheCacheOptions.mjs +75 -0
  57. package/src/components/cacher/options/MongoCacheOptions.cjs +85 -0
  58. package/src/components/cacher/options/MongoCacheOptions.mjs +79 -0
  59. package/src/components/cacher/options/MysqlCacheOptions.cjs +85 -0
  60. package/src/components/cacher/options/MysqlCacheOptions.mjs +79 -0
  61. package/src/components/cacher/options/PostgresCacheOptions.cjs +89 -0
  62. package/src/components/cacher/options/PostgresCacheOptions.mjs +83 -0
  63. package/src/components/cacher/options/RedisCacheOptions.cjs +101 -0
  64. package/src/components/cacher/options/RedisCacheOptions.mjs +95 -0
  65. package/src/components/cacher/options/SqliteCacheOptions.cjs +79 -0
  66. package/src/components/cacher/options/SqliteCacheOptions.mjs +73 -0
  67. package/src/components/cacher/types/CacheStoreOptions.cjs +1 -0
  68. package/src/components/cacher/types/CacheStoreOptions.mjs +1 -0
  69. package/src/components/docker/ConnectionOptionsBuilder.cjs +22 -14
  70. package/src/components/docker/ConnectionOptionsBuilder.mjs +22 -14
  71. package/src/components/docker/Docker.cjs +22 -14
  72. package/src/components/docker/Docker.mjs +22 -14
  73. package/src/components/docker/lib/DockerContainer.cjs +34 -26
  74. package/src/components/docker/lib/DockerContainer.mjs +26 -18
  75. package/src/components/docker/lib/DockerContainerTTY.cjs +18 -10
  76. package/src/components/docker/lib/DockerContainerTTY.mjs +18 -10
  77. package/src/components/docker/lib/DockerImage.cjs +11 -9
  78. package/src/components/docker/lib/DockerImage.mjs +3 -1
  79. package/src/components/docker/options/DockerPruneOptions.cjs +3 -1
  80. package/src/components/docker/options/DockerPruneOptions.mjs +3 -1
  81. package/src/components/docker/options/auth/DockerAuthOptions.cjs +3 -1
  82. package/src/components/docker/options/auth/DockerAuthOptions.mjs +3 -1
  83. package/src/components/docker/options/container/ContainerCommitOptions.cjs +3 -1
  84. package/src/components/docker/options/container/ContainerCommitOptions.mjs +3 -1
  85. package/src/components/docker/options/container/ContainerCreateTTYOptions.cjs +3 -1
  86. package/src/components/docker/options/container/ContainerCreateTTYOptions.mjs +3 -1
  87. package/src/components/docker/options/container/ContainerExecOptions.cjs +3 -1
  88. package/src/components/docker/options/container/ContainerExecOptions.mjs +5 -3
  89. package/src/components/docker/options/container/ContainerExportDirectoryOptions.cjs +3 -1
  90. package/src/components/docker/options/container/ContainerExportDirectoryOptions.mjs +3 -1
  91. package/src/components/docker/options/container/ContainerKillOptions.cjs +3 -1
  92. package/src/components/docker/options/container/ContainerKillOptions.mjs +3 -1
  93. package/src/components/docker/options/container/ContainerLogsOptions.cjs +3 -1
  94. package/src/components/docker/options/container/ContainerLogsOptions.mjs +3 -1
  95. package/src/components/docker/options/container/ContainerRemoveOptions.cjs +3 -1
  96. package/src/components/docker/options/container/ContainerRemoveOptions.mjs +3 -1
  97. package/src/components/docker/options/container/ContainerSettingOptions.cjs +3 -1
  98. package/src/components/docker/options/container/ContainerSettingOptions.mjs +3 -1
  99. package/src/components/docker/options/container/ContainerStopOptions.cjs +3 -1
  100. package/src/components/docker/options/container/ContainerStopOptions.mjs +3 -1
  101. package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.cjs +3 -1
  102. package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.mjs +3 -1
  103. package/src/components/docker/options/image/ImageBuildOptions.cjs +3 -1
  104. package/src/components/docker/options/image/ImageBuildOptions.mjs +5 -3
  105. package/src/components/docker/options/image/ImageExportOptions.cjs +3 -1
  106. package/src/components/docker/options/image/ImageExportOptions.mjs +3 -1
  107. package/src/components/docker/options/image/ImageImportOptions.cjs +3 -1
  108. package/src/components/docker/options/image/ImageImportOptions.mjs +3 -1
  109. package/src/components/docker/options/image/ImagePullOptions.cjs +3 -1
  110. package/src/components/docker/options/image/ImagePullOptions.mjs +3 -1
  111. package/src/components/docker/options/image/ImagePushOptions.cjs +3 -1
  112. package/src/components/docker/options/image/ImagePushOptions.mjs +3 -1
  113. package/src/components/docker/options/image/ImageRemoveOptions.cjs +3 -1
  114. package/src/components/docker/options/image/ImageRemoveOptions.mjs +3 -1
  115. package/src/components/docker/options/image/ImageTagOptions.cjs +3 -1
  116. package/src/components/docker/options/image/ImageTagOptions.mjs +3 -1
  117. package/src/components/docker/options/network/NetworkCreateOptions.cjs +3 -1
  118. package/src/components/docker/options/network/NetworkCreateOptions.mjs +3 -1
  119. package/src/components/entrypoint/Entrypoint.cjs +4 -2
  120. package/src/components/entrypoint/Entrypoint.mjs +49 -47
  121. package/src/components/entrypoint/lib/Controller.cjs +3 -1
  122. package/src/components/entrypoint/lib/Controller.mjs +3 -1
  123. package/src/decorators/ctrl/CLIAction.cjs +6 -4
  124. package/src/decorators/ctrl/CLIAction.mjs +4 -2
  125. package/src/decorators/ctrl/HTTPAction.cjs +4 -2
  126. package/src/decorators/ctrl/HTTPAction.mjs +9 -7
  127. package/src/decorators/ctrl/ServiceAction.cjs +8 -6
  128. package/src/decorators/ctrl/ServiceAction.mjs +4 -2
  129. package/src/decorators/ctrl/http/DELETE.cjs +4 -2
  130. package/src/decorators/ctrl/http/DELETE.mjs +4 -2
  131. package/src/decorators/ctrl/http/GET.cjs +4 -2
  132. package/src/decorators/ctrl/http/GET.mjs +4 -2
  133. package/src/decorators/ctrl/http/HEAD.cjs +4 -2
  134. package/src/decorators/ctrl/http/HEAD.mjs +4 -2
  135. package/src/decorators/ctrl/http/OPTIONS.cjs +4 -2
  136. package/src/decorators/ctrl/http/OPTIONS.mjs +4 -2
  137. package/src/decorators/ctrl/http/PATCH.cjs +4 -2
  138. package/src/decorators/ctrl/http/PATCH.mjs +4 -2
  139. package/src/decorators/ctrl/http/POST.cjs +4 -2
  140. package/src/decorators/ctrl/http/POST.mjs +4 -2
  141. package/src/decorators/ctrl/http/PUT.cjs +4 -2
  142. package/src/decorators/ctrl/http/PUT.mjs +4 -2
  143. package/src/decorators/di/Configurable.cjs +3 -1
  144. package/src/decorators/di/Configurable.mjs +3 -1
  145. package/src/decorators/di/Inject.cjs +11 -9
  146. package/src/decorators/di/Inject.mjs +10 -8
  147. package/src/decorators/dto/Accept.cjs +3 -1
  148. package/src/decorators/dto/Accept.mjs +3 -1
  149. package/src/decorators/dto/Expect.cjs +3 -1
  150. package/src/decorators/dto/Expect.mjs +3 -1
  151. package/src/decorators/dto/IndexSignature.cjs +3 -1
  152. package/src/decorators/dto/IndexSignature.mjs +3 -1
  153. package/src/decorators/dto/Return.cjs +3 -1
  154. package/src/decorators/dto/Return.mjs +3 -1
  155. package/src/decorators/orm/AfterInsert.cjs +11 -5
  156. package/src/decorators/orm/AfterInsert.mjs +17 -11
  157. package/src/decorators/orm/AfterLoad.cjs +15 -9
  158. package/src/decorators/orm/AfterLoad.mjs +20 -14
  159. package/src/decorators/orm/AfterRecover.cjs +15 -9
  160. package/src/decorators/orm/AfterRecover.mjs +16 -10
  161. package/src/decorators/orm/AfterRemove.cjs +15 -9
  162. package/src/decorators/orm/AfterRemove.mjs +16 -10
  163. package/src/decorators/orm/AfterSoftRemove.cjs +11 -5
  164. package/src/decorators/orm/AfterSoftRemove.mjs +16 -10
  165. package/src/decorators/orm/AfterUpdate.cjs +11 -5
  166. package/src/decorators/orm/AfterUpdate.mjs +18 -12
  167. package/src/decorators/orm/BeforeInsert.cjs +17 -11
  168. package/src/decorators/orm/BeforeInsert.mjs +15 -9
  169. package/src/decorators/orm/BeforeRecover.cjs +18 -12
  170. package/src/decorators/orm/BeforeRecover.mjs +13 -7
  171. package/src/decorators/orm/BeforeRemove.cjs +18 -12
  172. package/src/decorators/orm/BeforeRemove.mjs +13 -7
  173. package/src/decorators/orm/BeforeSoftRemove.cjs +17 -11
  174. package/src/decorators/orm/BeforeSoftRemove.mjs +13 -7
  175. package/src/decorators/orm/BeforeUpdate.cjs +15 -9
  176. package/src/decorators/orm/BeforeUpdate.mjs +16 -10
  177. package/src/decorators/orm/Check.cjs +11 -5
  178. package/src/decorators/orm/Check.mjs +11 -5
  179. package/src/decorators/orm/ChildEntity.cjs +16 -10
  180. package/src/decorators/orm/ChildEntity.mjs +13 -7
  181. package/src/decorators/orm/Column.cjs +28 -22
  182. package/src/decorators/orm/Column.mjs +11 -5
  183. package/src/decorators/orm/CreateDateColumn.cjs +13 -7
  184. package/src/decorators/orm/CreateDateColumn.mjs +11 -5
  185. package/src/decorators/orm/DeleteDateColumn.cjs +13 -7
  186. package/src/decorators/orm/DeleteDateColumn.mjs +11 -5
  187. package/src/decorators/orm/Entity.cjs +15 -9
  188. package/src/decorators/orm/Entity.mjs +17 -11
  189. package/src/decorators/orm/EventSubscriber.cjs +11 -5
  190. package/src/decorators/orm/EventSubscriber.mjs +11 -5
  191. package/src/decorators/orm/Exclusion.cjs +11 -5
  192. package/src/decorators/orm/Exclusion.mjs +17 -11
  193. package/src/decorators/orm/Generated.cjs +13 -7
  194. package/src/decorators/orm/Generated.mjs +17 -11
  195. package/src/decorators/orm/Index.cjs +19 -13
  196. package/src/decorators/orm/Index.mjs +29 -23
  197. package/src/decorators/orm/JoinColumn.cjs +15 -9
  198. package/src/decorators/orm/JoinColumn.mjs +11 -5
  199. package/src/decorators/orm/JoinTable.cjs +11 -5
  200. package/src/decorators/orm/JoinTable.mjs +15 -9
  201. package/src/decorators/orm/ManyToMany.cjs +18 -12
  202. package/src/decorators/orm/ManyToMany.mjs +22 -16
  203. package/src/decorators/orm/ManyToOne.cjs +21 -15
  204. package/src/decorators/orm/ManyToOne.mjs +22 -16
  205. package/src/decorators/orm/ObjectIdColumn.cjs +11 -5
  206. package/src/decorators/orm/ObjectIdColumn.mjs +17 -11
  207. package/src/decorators/orm/OneToMany.cjs +19 -13
  208. package/src/decorators/orm/OneToMany.mjs +11 -5
  209. package/src/decorators/orm/OneToOne.cjs +20 -14
  210. package/src/decorators/orm/OneToOne.mjs +18 -12
  211. package/src/decorators/orm/PrimaryColumn.cjs +15 -9
  212. package/src/decorators/orm/PrimaryColumn.mjs +30 -24
  213. package/src/decorators/orm/PrimaryGeneratedColumn.cjs +11 -5
  214. package/src/decorators/orm/PrimaryGeneratedColumn.mjs +13 -7
  215. package/src/decorators/orm/RelationId.cjs +16 -10
  216. package/src/decorators/orm/RelationId.mjs +17 -11
  217. package/src/decorators/orm/TableInheritance.cjs +13 -7
  218. package/src/decorators/orm/TableInheritance.mjs +15 -9
  219. package/src/decorators/orm/Tree.cjs +11 -5
  220. package/src/decorators/orm/Tree.mjs +11 -5
  221. package/src/decorators/orm/TreeChildren.cjs +11 -5
  222. package/src/decorators/orm/TreeChildren.mjs +22 -16
  223. package/src/decorators/orm/TreeLevelColumn.cjs +11 -5
  224. package/src/decorators/orm/TreeLevelColumn.mjs +11 -5
  225. package/src/decorators/orm/TreeParent.cjs +17 -11
  226. package/src/decorators/orm/TreeParent.mjs +11 -5
  227. package/src/decorators/orm/Unique.cjs +18 -12
  228. package/src/decorators/orm/Unique.mjs +11 -5
  229. package/src/decorators/orm/UpdateDateColumn.cjs +13 -7
  230. package/src/decorators/orm/UpdateDateColumn.mjs +17 -11
  231. package/src/decorators/orm/VersionColumn.cjs +11 -5
  232. package/src/decorators/orm/VersionColumn.mjs +11 -5
  233. package/src/decorators/orm/ViewColumn.cjs +11 -5
  234. package/src/decorators/orm/ViewColumn.mjs +11 -5
  235. package/src/decorators/orm/ViewEntity.cjs +13 -7
  236. package/src/decorators/orm/ViewEntity.mjs +11 -5
  237. package/src/decorators/orm/VirtualColumn.cjs +11 -5
  238. package/src/decorators/orm/VirtualColumn.mjs +15 -9
  239. package/src/lib/base/BaseObject.cjs +3 -1
  240. package/src/lib/base/BaseObject.mjs +3 -1
  241. package/src/lib/base/Context.cjs +3 -1
  242. package/src/lib/base/Context.mjs +3 -1
  243. package/src/lib/base/internal/ApplicationConfigLoader.cjs +3 -1
  244. package/src/lib/base/internal/ApplicationConfigLoader.mjs +3 -1
  245. package/src/lib/base/internal/ControllerEntrypoint.cjs +1 -1
  246. package/src/lib/base/internal/ControllerEntrypoint.mjs +1 -1
  247. package/src/lib/base/internal/DataValidator.cjs +16 -14
  248. package/src/lib/base/internal/DataValidator.mjs +3 -1
  249. package/src/lib/base/internal/FlexibleDTO.cjs +3 -1
  250. package/src/lib/base/internal/FlexibleDTO.mjs +3 -1
  251. package/src/lib/base/internal/MethodValidation.cjs +18 -16
  252. package/src/lib/base/internal/MethodValidation.mjs +3 -1
  253. package/src/lib/base/internal/ModuleConfigLoader.cjs +3 -1
  254. package/src/lib/base/internal/ModuleConfigLoader.mjs +24 -22
  255. package/src/lib/base/internal/ObjectConfiguration.cjs +3 -1
  256. package/src/lib/base/internal/ObjectConfiguration.mjs +3 -1
  257. package/src/lib/base/internal/ObjectSchemaValidation.cjs +3 -1
  258. package/src/lib/base/internal/ObjectSchemaValidation.mjs +3 -1
  259. package/src/lib/base/internal/ObjectType.cjs +3 -1
  260. package/src/lib/base/internal/ObjectType.mjs +3 -1
  261. package/src/lib/context/CLIContext.cjs +3 -1
  262. package/src/lib/context/CLIContext.mjs +3 -1
  263. package/src/lib/context/HTTPContext.cjs +3 -1
  264. package/src/lib/context/HTTPContext.mjs +3 -1
  265. package/src/lib/context/ServiceContext.cjs +3 -1
  266. package/src/lib/context/ServiceContext.mjs +3 -1
  267. package/src/lib/core/Application.cjs +19 -13
  268. package/src/lib/core/Application.mjs +15 -9
  269. package/src/lib/core/Component.cjs +3 -1
  270. package/src/lib/core/Component.mjs +3 -1
  271. package/src/lib/core/Container.cjs +2 -0
  272. package/src/lib/core/Container.mjs +2 -0
  273. package/src/lib/core/DTO.cjs +3 -1
  274. package/src/lib/core/DTO.mjs +3 -1
  275. package/src/lib/core/Module.cjs +4 -2
  276. package/src/lib/core/Module.mjs +4 -2
  277. package/src/lib/core/Provider.cjs +3 -1
  278. package/src/lib/core/Provider.mjs +3 -1
  279. package/src/lib/helpers/IsSymbol.cjs +3 -1
  280. package/src/lib/helpers/IsSymbol.mjs +3 -1
  281. package/src/lib/helpers/NonceStr.cjs +1 -1
  282. package/src/lib/helpers/NonceStr.mjs +1 -1
  283. package/src/lib/helpers/ObjectHash.cjs +1 -1
  284. package/src/lib/helpers/ObjectHash.mjs +1 -1
  285. package/src/lib/helpers/RandomString.cjs +1 -1
  286. package/src/lib/helpers/RandomString.mjs +1 -1
  287. package/src/lib/ioc/DependencyInjectionContainer.cjs +3 -1
  288. package/src/lib/ioc/DependencyInjectionContainer.mjs +13 -11
  289. package/src/lib/ioc/Errors.cjs +3 -1
  290. package/src/lib/ioc/Errors.mjs +3 -1
  291. package/src/lib/ioc/ListModules.cjs +104 -102
  292. package/src/lib/ioc/ListModules.mjs +4 -2
  293. package/src/lib/ioc/LoadModules.cjs +2 -0
  294. package/src/lib/ioc/LoadModules.mjs +2 -0
  295. package/src/lib/ioc/Resolvers.cjs +9 -7
  296. package/src/lib/ioc/Resolvers.mjs +3 -1
  297. package/src/lib/ioc/Utils.cjs +3 -1
  298. package/src/lib/ioc/Utils.mjs +3 -1
  299. package/src/lib/validation/VLD.cjs +3 -1
  300. package/src/lib/validation/VLD.mjs +3 -1
  301. package/src/options/ApplicationOptions.cjs +3 -1
  302. package/src/options/ApplicationOptions.mjs +3 -1
  303. package/src/options/LoadAnonymousObjectOptions.cjs +3 -1
  304. package/src/options/LoadAnonymousObjectOptions.mjs +3 -1
  305. package/src/options/LoadNamedObjectOptions.cjs +3 -1
  306. package/src/options/LoadNamedObjectOptions.mjs +3 -1
  307. package/src/options/LoadObjectOptions.cjs +3 -1
  308. package/src/options/LoadObjectOptions.mjs +3 -1
  309. package/src/options/ModuleLoadObjectsOptions.cjs +3 -1
  310. package/src/options/ModuleLoadObjectsOptions.mjs +3 -1
  311. package/src/options/ModuleOptions.cjs +3 -1
  312. package/src/options/ModuleOptions.mjs +3 -1
  313. package/src/options/OverridableNamedObjectOptions.cjs +3 -1
  314. package/src/options/OverridableNamedObjectOptions.mjs +3 -1
  315. package/src/options/OverridableObjectOptions.cjs +3 -1
  316. package/src/options/OverridableObjectOptions.mjs +3 -1
  317. package/src/providers/Database.cjs +11 -5
  318. package/src/providers/Database.mjs +11 -5
  319. package/src/providers/PasswordHash.cjs +17 -15
  320. package/src/providers/PasswordHash.mjs +212 -210
  321. package/vendor/Package.10.cjs +0 -2
  322. package/vendor/Package.10.mjs +0 -2
  323. package/vendor/Package.11.cjs +1 -9
  324. package/vendor/Package.11.mjs +1 -9
  325. package/vendor/Package.12.cjs +5 -79
  326. package/vendor/Package.12.mjs +5 -73
  327. package/vendor/{Package.112.cjs → Package.122.cjs} +5501 -5501
  328. package/vendor/{Package.112.mjs → Package.122.mjs} +5507 -5507
  329. package/vendor/Package.13.cjs +7 -1
  330. package/vendor/Package.13.mjs +7 -1
  331. package/vendor/Package.132.cjs +87 -0
  332. package/vendor/Package.132.mjs +79 -0
  333. package/vendor/Package.14.cjs +1 -14055
  334. package/vendor/Package.14.mjs +1 -14029
  335. package/vendor/Package.15.cjs +1 -48245
  336. package/vendor/Package.15.mjs +1 -48209
  337. package/vendor/Package.16.cjs +14063 -0
  338. package/vendor/Package.16.mjs +14035 -0
  339. package/vendor/Package.17.cjs +3 -0
  340. package/vendor/Package.17.mjs +1 -0
  341. package/vendor/Package.18.cjs +48255 -0
  342. package/vendor/Package.18.mjs +48215 -0
  343. package/vendor/Package.19.cjs +3 -0
  344. package/vendor/Package.19.mjs +1 -0
  345. package/vendor/Package.610.cjs +175 -0
  346. package/vendor/Package.610.mjs +157 -0
  347. package/vendor/Package.611.cjs +196 -0
  348. package/vendor/Package.611.mjs +180 -0
  349. package/vendor/Package.62.cjs +1 -1
  350. package/vendor/Package.62.mjs +1 -1
  351. package/vendor/Package.65.cjs +716 -0
  352. package/vendor/Package.65.mjs +710 -0
  353. package/vendor/Package.66.cjs +680 -0
  354. package/vendor/Package.66.mjs +652 -0
  355. package/vendor/Package.67.cjs +143 -0
  356. package/vendor/Package.67.mjs +127 -0
  357. package/vendor/Package.68.cjs +341 -0
  358. package/vendor/Package.68.mjs +327 -0
  359. package/vendor/Package.69.cjs +157 -0
  360. package/vendor/Package.69.mjs +139 -0
@@ -26,8 +26,6 @@ const a = require("events");
26
26
 
27
27
  const u = require("./Utils.cjs");
28
28
 
29
- require("url");
30
-
31
29
  require("./FunctionTokenizer.cjs");
32
30
 
33
31
  require("../../../vendor/Package.2.cjs");
@@ -42,6 +40,10 @@ require("node:util/types");
42
40
 
43
41
  require("../validation/VLD.cjs");
44
42
 
43
+ require("../../../vendor/Package.11.cjs");
44
+
45
+ require("url");
46
+
45
47
  require("../../exceptions/dto/InvalidValueException.cjs");
46
48
 
47
49
  require("../base/abstracts/Exception.cjs");
@@ -203,7 +205,7 @@ Object.defineProperty(k, "__esModule", {
203
205
  value: true
204
206
  });
205
207
 
206
- var L = k.convertPosixPathToPattern = tt = k.convertWindowsPathToPattern = z = k.convertPathToPattern = Z = k.escapePosixPath = X = k.escapeWindowsPath = V = k.escape = K = k.removeLeadingDotSegment = U = k.makeAbsolute = G = k.unixify = void 0;
208
+ var L = k.convertPosixPathToPattern = tt = k.convertWindowsPathToPattern = z = k.convertPathToPattern = Z = k.escapePosixPath = X = k.escapeWindowsPath = V = k.escape = K = k.removeLeadingDotSegment = U = k.makeAbsolute = q = k.unixify = void 0;
207
209
 
208
210
  const H = f.default;
209
211
 
@@ -225,13 +227,13 @@ function B(t) {
225
227
  return t.replace(/\\/g, "/");
226
228
  }
227
229
 
228
- var G = k.unixify = B;
230
+ var q = k.unixify = B;
229
231
 
230
- function q(t, e) {
232
+ function G(t, e) {
231
233
  return D.resolve(t, e);
232
234
  }
233
235
 
234
- var U = k.makeAbsolute = q;
236
+ var U = k.makeAbsolute = G;
235
237
 
236
238
  function W(t) {
237
239
  if (t.charAt(0) === ".") {
@@ -696,9 +698,9 @@ const Nt = t => t !== null && typeof t === "object" && !Array.isArray(t);
696
698
 
697
699
  const Bt = t => e => t === true ? Number(e) : String(e);
698
700
 
699
- const Gt = t => typeof t === "number" || typeof t === "string" && t !== "";
701
+ const qt = t => typeof t === "number" || typeof t === "string" && t !== "";
700
702
 
701
- const qt = t => Number.isInteger(+t);
703
+ const Gt = t => Number.isInteger(+t);
702
704
 
703
705
  const Ut = t => {
704
706
  let e = `${t}`;
@@ -845,7 +847,7 @@ const te = (t, e, r = 1, n = {}) => {
845
847
  };
846
848
 
847
849
  const ee = (t, e, r = 1, n = {}) => {
848
- if (!qt(t) && t.length > 1 || !qt(e) && e.length > 1) {
850
+ if (!Gt(t) && t.length > 1 || !Gt(e) && e.length > 1) {
849
851
  return zt(t, e, n);
850
852
  }
851
853
  let s = n.transform || (t => String.fromCharCode(t));
@@ -874,10 +876,10 @@ const ee = (t, e, r = 1, n = {}) => {
874
876
  };
875
877
 
876
878
  const re = (t, e, r, n = {}) => {
877
- if (e == null && Gt(t)) {
879
+ if (e == null && qt(t)) {
878
880
  return [ t ];
879
881
  }
880
- if (!Gt(t) || !Gt(e)) {
882
+ if (!qt(t) || !qt(e)) {
881
883
  return zt(t, e, n);
882
884
  }
883
885
  if (typeof r === "function") {
@@ -893,11 +895,11 @@ const re = (t, e, r, n = {}) => {
893
895
  };
894
896
  if (s.capture === true) s.wrap = true;
895
897
  r = r || s.step || 1;
896
- if (!qt(r)) {
898
+ if (!Gt(r)) {
897
899
  if (r != null && !Nt(r)) return Jt(r, s);
898
900
  return re(t, e, 1, r);
899
901
  }
900
- if (qt(t) && qt(e)) {
902
+ if (Gt(t) && Gt(e)) {
901
903
  return te(t, e, r, s);
902
904
  }
903
905
  return ee(t, e, Math.max(Math.abs(r), 1), s);
@@ -1391,11 +1393,11 @@ const Ne = _e;
1391
1393
 
1392
1394
  const Be = Me;
1393
1395
 
1394
- const Ge = (t, e = {}) => {
1396
+ const qe = (t, e = {}) => {
1395
1397
  let r = [];
1396
1398
  if (Array.isArray(t)) {
1397
1399
  for (const n of t) {
1398
- const t = Ge.create(n, e);
1400
+ const t = qe.create(n, e);
1399
1401
  if (Array.isArray(t)) {
1400
1402
  r.push(...t);
1401
1403
  } else {
@@ -1403,7 +1405,7 @@ const Ge = (t, e = {}) => {
1403
1405
  }
1404
1406
  }
1405
1407
  } else {
1406
- r = [].concat(Ge.create(t, e));
1408
+ r = [].concat(qe.create(t, e));
1407
1409
  }
1408
1410
  if (e && e.expand === true && e.nodupes === true) {
1409
1411
  r = [ ...new Set(r) ];
@@ -1411,25 +1413,25 @@ const Ge = (t, e = {}) => {
1411
1413
  return r;
1412
1414
  };
1413
1415
 
1414
- Ge.parse = (t, e = {}) => Be(t, e);
1416
+ qe.parse = (t, e = {}) => Be(t, e);
1415
1417
 
1416
- Ge.stringify = (t, e = {}) => {
1418
+ qe.stringify = (t, e = {}) => {
1417
1419
  if (typeof t === "string") {
1418
- return je(Ge.parse(t, e), e);
1420
+ return je(qe.parse(t, e), e);
1419
1421
  }
1420
1422
  return je(t, e);
1421
1423
  };
1422
1424
 
1423
- Ge.compile = (t, e = {}) => {
1425
+ qe.compile = (t, e = {}) => {
1424
1426
  if (typeof t === "string") {
1425
- t = Ge.parse(t, e);
1427
+ t = qe.parse(t, e);
1426
1428
  }
1427
1429
  return Ie(t, e);
1428
1430
  };
1429
1431
 
1430
- Ge.expand = (t, e = {}) => {
1432
+ qe.expand = (t, e = {}) => {
1431
1433
  if (typeof t === "string") {
1432
- t = Ge.parse(t, e);
1434
+ t = qe.parse(t, e);
1433
1435
  }
1434
1436
  let r = Ne(t, e);
1435
1437
  if (e.noempty === true) {
@@ -1441,16 +1443,16 @@ Ge.expand = (t, e = {}) => {
1441
1443
  return r;
1442
1444
  };
1443
1445
 
1444
- Ge.create = (t, e = {}) => {
1446
+ qe.create = (t, e = {}) => {
1445
1447
  if (t === "" || t.length < 3) {
1446
1448
  return [ t ];
1447
1449
  }
1448
- return e.expand !== true ? Ge.compile(t, e) : Ge.expand(t, e);
1450
+ return e.expand !== true ? qe.compile(t, e) : qe.expand(t, e);
1449
1451
  };
1450
1452
 
1451
- var qe = Ge;
1453
+ var Ge = qe;
1452
1454
 
1453
- const Ue = t.getDefaultExportFromCjs(qe);
1455
+ const Ue = t.getDefaultExportFromCjs(Ge);
1454
1456
 
1455
1457
  var We = {};
1456
1458
 
@@ -2001,7 +2003,7 @@ const $r = hr;
2001
2003
 
2002
2004
  const jr = We;
2003
2005
 
2004
- const {MAX_LENGTH: Ir, POSIX_REGEX_SOURCE: Nr, REGEX_NON_SPECIAL_CHARS: Br, REGEX_SPECIAL_CHARS_BACKREF: Gr, REPLACEMENTS: qr} = $r;
2006
+ const {MAX_LENGTH: Ir, POSIX_REGEX_SOURCE: Nr, REGEX_NON_SPECIAL_CHARS: Br, REGEX_SPECIAL_CHARS_BACKREF: qr, REPLACEMENTS: Gr} = $r;
2005
2007
 
2006
2008
  const Ur = (t, e) => {
2007
2009
  if (typeof e.expandRange === "function") {
@@ -2023,7 +2025,7 @@ const Kr = (t, e) => {
2023
2025
  if (typeof t !== "string") {
2024
2026
  throw new TypeError("Expected a string");
2025
2027
  }
2026
- t = qr[t] || t;
2028
+ t = Gr[t] || t;
2027
2029
  const r = {
2028
2030
  ...e
2029
2031
  };
@@ -2111,7 +2113,7 @@ const Kr = (t, e) => {
2111
2113
  C[t]--;
2112
2114
  O.pop();
2113
2115
  };
2114
- const G = t => {
2116
+ const q = t => {
2115
2117
  if (k.type === "globstar") {
2116
2118
  const e = C.braces > 0 && (t.type === "comma" || t.type === "brace");
2117
2119
  const r = t.extglob === true || w.length && (t.type === "pipe" || t.type === "paren");
@@ -2136,7 +2138,7 @@ const Kr = (t, e) => {
2136
2138
  o.push(t);
2137
2139
  k = t;
2138
2140
  };
2139
- const q = (t, e) => {
2141
+ const G = (t, e) => {
2140
2142
  const n = {
2141
2143
  ...l[e],
2142
2144
  conditions: 1,
@@ -2147,12 +2149,12 @@ const Kr = (t, e) => {
2147
2149
  n.output = C.output;
2148
2150
  const s = (r.capture ? "(" : "") + n.open;
2149
2151
  N("parens");
2150
- G({
2152
+ q({
2151
2153
  type: t,
2152
2154
  value: e,
2153
2155
  output: C.output ? "" : d
2154
2156
  });
2155
- G({
2157
+ q({
2156
2158
  type: "paren",
2157
2159
  extglob: true,
2158
2160
  value: F(),
@@ -2182,7 +2184,7 @@ const Kr = (t, e) => {
2182
2184
  C.negatedExtglob = true;
2183
2185
  }
2184
2186
  }
2185
- G({
2187
+ q({
2186
2188
  type: "paren",
2187
2189
  extglob: true,
2188
2190
  value: L,
@@ -2192,7 +2194,7 @@ const Kr = (t, e) => {
2192
2194
  };
2193
2195
  if (r.fastpaths !== false && !/(^[*!]|[/()[\]{}"])/.test(t)) {
2194
2196
  let n = false;
2195
- let s = t.replace(Gr, ((t, e, r, s, i, o) => {
2197
+ let s = t.replace(qr, ((t, e, r, s, i, o) => {
2196
2198
  if (s === "\\") {
2197
2199
  n = true;
2198
2200
  return t;
@@ -2246,7 +2248,7 @@ const Kr = (t, e) => {
2246
2248
  }
2247
2249
  if (!t) {
2248
2250
  L += "\\";
2249
- G({
2251
+ q({
2250
2252
  type: "text",
2251
2253
  value: L
2252
2254
  });
@@ -2267,7 +2269,7 @@ const Kr = (t, e) => {
2267
2269
  L += F();
2268
2270
  }
2269
2271
  if (C.brackets === 0) {
2270
- G({
2272
+ q({
2271
2273
  type: "text",
2272
2274
  value: L
2273
2275
  });
@@ -2322,7 +2324,7 @@ const Kr = (t, e) => {
2322
2324
  if (L === '"') {
2323
2325
  C.quotes = C.quotes === 1 ? 0 : 1;
2324
2326
  if (r.keepQuotes === true) {
2325
- G({
2327
+ q({
2326
2328
  type: "text",
2327
2329
  value: L
2328
2330
  });
@@ -2331,7 +2333,7 @@ const Kr = (t, e) => {
2331
2333
  }
2332
2334
  if (L === "(") {
2333
2335
  N("parens");
2334
- G({
2336
+ q({
2335
2337
  type: "paren",
2336
2338
  value: L
2337
2339
  });
@@ -2346,7 +2348,7 @@ const Kr = (t, e) => {
2346
2348
  U(w.pop());
2347
2349
  continue;
2348
2350
  }
2349
- G({
2351
+ q({
2350
2352
  type: "paren",
2351
2353
  value: L,
2352
2354
  output: C.parens ? ")" : "\\)"
@@ -2363,7 +2365,7 @@ const Kr = (t, e) => {
2363
2365
  } else {
2364
2366
  N("brackets");
2365
2367
  }
2366
- G({
2368
+ q({
2367
2369
  type: "bracket",
2368
2370
  value: L
2369
2371
  });
@@ -2371,7 +2373,7 @@ const Kr = (t, e) => {
2371
2373
  }
2372
2374
  if (L === "]") {
2373
2375
  if (r.nobracket === true || k && k.type === "bracket" && k.value.length === 1) {
2374
- G({
2376
+ q({
2375
2377
  type: "text",
2376
2378
  value: L,
2377
2379
  output: `\\${L}`
@@ -2382,7 +2384,7 @@ const Kr = (t, e) => {
2382
2384
  if (r.strictBrackets === true) {
2383
2385
  throw new SyntaxError(Wr("opening", "["));
2384
2386
  }
2385
- G({
2387
+ q({
2386
2388
  type: "text",
2387
2389
  value: L,
2388
2390
  output: `\\${L}`
@@ -2422,13 +2424,13 @@ const Kr = (t, e) => {
2422
2424
  tokensIndex: C.tokens.length
2423
2425
  };
2424
2426
  T.push(t);
2425
- G(t);
2427
+ q(t);
2426
2428
  continue;
2427
2429
  }
2428
2430
  if (L === "}") {
2429
2431
  const t = T[T.length - 1];
2430
2432
  if (r.nobrace === true || !t) {
2431
- G({
2433
+ q({
2432
2434
  type: "text",
2433
2435
  value: L,
2434
2436
  output: L
@@ -2461,7 +2463,7 @@ const Kr = (t, e) => {
2461
2463
  C.output += t.output || t.value;
2462
2464
  }
2463
2465
  }
2464
- G({
2466
+ q({
2465
2467
  type: "brace",
2466
2468
  value: L,
2467
2469
  output: e
@@ -2474,7 +2476,7 @@ const Kr = (t, e) => {
2474
2476
  if (w.length > 0) {
2475
2477
  w[w.length - 1].conditions++;
2476
2478
  }
2477
- G({
2479
+ q({
2478
2480
  type: "text",
2479
2481
  value: L
2480
2482
  });
@@ -2487,7 +2489,7 @@ const Kr = (t, e) => {
2487
2489
  e.comma = true;
2488
2490
  t = "|";
2489
2491
  }
2490
- G({
2492
+ q({
2491
2493
  type: "comma",
2492
2494
  value: L,
2493
2495
  output: t
@@ -2503,7 +2505,7 @@ const Kr = (t, e) => {
2503
2505
  k = i;
2504
2506
  continue;
2505
2507
  }
2506
- G({
2508
+ q({
2507
2509
  type: "slash",
2508
2510
  value: L,
2509
2511
  output: h
@@ -2521,14 +2523,14 @@ const Kr = (t, e) => {
2521
2523
  continue;
2522
2524
  }
2523
2525
  if (C.braces + C.parens === 0 && k.type !== "bos" && k.type !== "slash") {
2524
- G({
2526
+ q({
2525
2527
  type: "text",
2526
2528
  value: L,
2527
2529
  output: f
2528
2530
  });
2529
2531
  continue;
2530
2532
  }
2531
- G({
2533
+ q({
2532
2534
  type: "dot",
2533
2535
  value: L,
2534
2536
  output: f
@@ -2538,7 +2540,7 @@ const Kr = (t, e) => {
2538
2540
  if (L === "?") {
2539
2541
  const t = k && k.value === "(";
2540
2542
  if (!t && r.noextglob !== true && D() === "(" && D(2) !== "?") {
2541
- q("qmark", L);
2543
+ G("qmark", L);
2542
2544
  continue;
2543
2545
  }
2544
2546
  if (k && k.type === "paren") {
@@ -2550,7 +2552,7 @@ const Kr = (t, e) => {
2550
2552
  if (k.value === "(" && !/[!=<:]/.test(t) || t === "<" && !/<([!=]|\w+>)/.test(M())) {
2551
2553
  e = `\\${L}`;
2552
2554
  }
2553
- G({
2555
+ q({
2554
2556
  type: "text",
2555
2557
  value: L,
2556
2558
  output: e
@@ -2558,14 +2560,14 @@ const Kr = (t, e) => {
2558
2560
  continue;
2559
2561
  }
2560
2562
  if (r.dot !== true && (k.type === "slash" || k.type === "bos")) {
2561
- G({
2563
+ q({
2562
2564
  type: "qmark",
2563
2565
  value: L,
2564
2566
  output: S
2565
2567
  });
2566
2568
  continue;
2567
2569
  }
2568
- G({
2570
+ q({
2569
2571
  type: "qmark",
2570
2572
  value: L,
2571
2573
  output: m
@@ -2575,7 +2577,7 @@ const Kr = (t, e) => {
2575
2577
  if (L === "!") {
2576
2578
  if (r.noextglob !== true && D() === "(") {
2577
2579
  if (D(2) !== "?" || !/[!=<:]/.test(D(3))) {
2578
- q("negate", L);
2580
+ G("negate", L);
2579
2581
  continue;
2580
2582
  }
2581
2583
  }
@@ -2586,11 +2588,11 @@ const Kr = (t, e) => {
2586
2588
  }
2587
2589
  if (L === "+") {
2588
2590
  if (r.noextglob !== true && D() === "(" && D(2) !== "?") {
2589
- q("plus", L);
2591
+ G("plus", L);
2590
2592
  continue;
2591
2593
  }
2592
2594
  if (k && k.value === "(" || r.regex === false) {
2593
- G({
2595
+ q({
2594
2596
  type: "plus",
2595
2597
  value: L,
2596
2598
  output: p
@@ -2598,13 +2600,13 @@ const Kr = (t, e) => {
2598
2600
  continue;
2599
2601
  }
2600
2602
  if (k && (k.type === "bracket" || k.type === "paren" || k.type === "brace") || C.parens > 0) {
2601
- G({
2603
+ q({
2602
2604
  type: "plus",
2603
2605
  value: L
2604
2606
  });
2605
2607
  continue;
2606
2608
  }
2607
- G({
2609
+ q({
2608
2610
  type: "plus",
2609
2611
  value: p
2610
2612
  });
@@ -2612,7 +2614,7 @@ const Kr = (t, e) => {
2612
2614
  }
2613
2615
  if (L === "@") {
2614
2616
  if (r.noextglob !== true && D() === "(" && D(2) !== "?") {
2615
- G({
2617
+ q({
2616
2618
  type: "at",
2617
2619
  extglob: true,
2618
2620
  value: L,
@@ -2620,7 +2622,7 @@ const Kr = (t, e) => {
2620
2622
  });
2621
2623
  continue;
2622
2624
  }
2623
- G({
2625
+ q({
2624
2626
  type: "text",
2625
2627
  value: L
2626
2628
  });
@@ -2635,7 +2637,7 @@ const Kr = (t, e) => {
2635
2637
  L += t[0];
2636
2638
  C.index += t[0].length;
2637
2639
  }
2638
- G({
2640
+ q({
2639
2641
  type: "text",
2640
2642
  value: L
2641
2643
  });
@@ -2653,7 +2655,7 @@ const Kr = (t, e) => {
2653
2655
  }
2654
2656
  let e = M();
2655
2657
  if (r.noextglob !== true && /^\([^?]/.test(e)) {
2656
- q("star", L);
2658
+ G("star", L);
2657
2659
  continue;
2658
2660
  }
2659
2661
  if (k.type === "star") {
@@ -2666,7 +2668,7 @@ const Kr = (t, e) => {
2666
2668
  const i = n.type === "slash" || n.type === "bos";
2667
2669
  const o = s && (s.type === "star" || s.type === "globstar");
2668
2670
  if (r.bash === true && (!i || e[0] && e[0] !== "/")) {
2669
- G({
2671
+ q({
2670
2672
  type: "star",
2671
2673
  value: L,
2672
2674
  output: ""
@@ -2676,7 +2678,7 @@ const Kr = (t, e) => {
2676
2678
  const a = C.braces > 0 && (n.type === "comma" || n.type === "brace");
2677
2679
  const u = w.length && (n.type === "pipe" || n.type === "paren");
2678
2680
  if (!i && n.type !== "paren" && !a && !u) {
2679
- G({
2681
+ q({
2680
2682
  type: "star",
2681
2683
  value: L,
2682
2684
  output: ""
@@ -2721,7 +2723,7 @@ const Kr = (t, e) => {
2721
2723
  C.output += n.output + k.output;
2722
2724
  C.globstar = true;
2723
2725
  $(L + F());
2724
- G({
2726
+ q({
2725
2727
  type: "slash",
2726
2728
  value: "/",
2727
2729
  output: ""
@@ -2735,7 +2737,7 @@ const Kr = (t, e) => {
2735
2737
  C.output = k.output;
2736
2738
  C.globstar = true;
2737
2739
  $(L + F());
2738
- G({
2740
+ q({
2739
2741
  type: "slash",
2740
2742
  value: "/",
2741
2743
  output: ""
@@ -2761,12 +2763,12 @@ const Kr = (t, e) => {
2761
2763
  if (k.type === "bos" || k.type === "slash") {
2762
2764
  n.output = R + n.output;
2763
2765
  }
2764
- G(n);
2766
+ q(n);
2765
2767
  continue;
2766
2768
  }
2767
2769
  if (k && (k.type === "bracket" || k.type === "paren") && r.regex === true) {
2768
2770
  n.output = L;
2769
- G(n);
2771
+ q(n);
2770
2772
  continue;
2771
2773
  }
2772
2774
  if (C.index === C.start || k.type === "slash" || k.type === "dot") {
@@ -2785,7 +2787,7 @@ const Kr = (t, e) => {
2785
2787
  k.output += d;
2786
2788
  }
2787
2789
  }
2788
- G(n);
2790
+ q(n);
2789
2791
  }
2790
2792
  while (C.brackets > 0) {
2791
2793
  if (r.strictBrackets === true) throw new SyntaxError(Wr("closing", "]"));
@@ -2803,7 +2805,7 @@ const Kr = (t, e) => {
2803
2805
  B("braces");
2804
2806
  }
2805
2807
  if (r.strictSlashes !== true && (k.type === "star" || k.type === "bracket")) {
2806
- G({
2808
+ q({
2807
2809
  type: "maybe_slash",
2808
2810
  value: "",
2809
2811
  output: `${h}?`
@@ -2830,7 +2832,7 @@ Kr.fastpaths = (t, e) => {
2830
2832
  if (s > n) {
2831
2833
  throw new SyntaxError(`Input length: ${s}, exceeds maximum allowed length: ${n}`);
2832
2834
  }
2833
- t = qr[t] || t;
2835
+ t = Gr[t] || t;
2834
2836
  const i = jr.isWindows(e);
2835
2837
  const {DOT_LITERAL: o, SLASH_LITERAL: a, ONE_CHAR: u, DOTS_SLASH: c, NO_DOT: l, NO_DOTS: f, NO_DOTS_SLASH: p, STAR: h, START_ANCHOR: d} = $r.globChars(i);
2836
2838
  const _ = r.dot ? f : l;
@@ -3091,7 +3093,7 @@ const on = t.getDefaultExportFromCjs(sn);
3091
3093
 
3092
3094
  const an = h.default;
3093
3095
 
3094
- const un = qe;
3096
+ const un = Ge;
3095
3097
 
3096
3098
  const cn = sn;
3097
3099
 
@@ -3291,7 +3293,7 @@ Object.defineProperty(rt, "__esModule", {
3291
3293
  value: true
3292
3294
  });
3293
3295
 
3294
- var gn = rt.isAbsolute = Ss = rt.partitionAbsoluteAndRelative = vs = rt.removeDuplicateSlashes = gs = rt.matchAny = ds = rt.convertPatternsToRe = ps = rt.makeRe = ls = rt.getPatternParts = us = rt.expandBraceExpansion = os = rt.expandPatternsWithBraceExpansion = ss = rt.isAffectDepthOfReadingPattern = rs = rt.endsWithSlashGlobStar = ts = rt.hasGlobStar = zn = rt.getBaseDirectory = Yn = rt.isPatternRelatedToParentDirectory = Qn = rt.getPatternsOutsideCurrentDirectory = Kn = rt.getPatternsInsideCurrentDirectory = Un = rt.getPositivePatterns = Gn = rt.getNegativePatterns = Nn = rt.isPositivePattern = jn = rt.isNegativePattern = Mn = rt.convertToNegativePattern = Dn = rt.convertToPositivePattern = kn = rt.isDynamicPattern = Tn = rt.isStaticPattern = void 0;
3296
+ var gn = rt.isAbsolute = Ss = rt.partitionAbsoluteAndRelative = vs = rt.removeDuplicateSlashes = gs = rt.matchAny = ds = rt.convertPatternsToRe = ps = rt.makeRe = ls = rt.getPatternParts = us = rt.expandBraceExpansion = os = rt.expandPatternsWithBraceExpansion = ss = rt.isAffectDepthOfReadingPattern = rs = rt.endsWithSlashGlobStar = ts = rt.hasGlobStar = zn = rt.getBaseDirectory = Yn = rt.isPatternRelatedToParentDirectory = Qn = rt.getPatternsOutsideCurrentDirectory = Kn = rt.getPatternsInsideCurrentDirectory = Un = rt.getPositivePatterns = qn = rt.getNegativePatterns = Nn = rt.isPositivePattern = jn = rt.isNegativePattern = Mn = rt.convertToNegativePattern = Dn = rt.convertToPositivePattern = kn = rt.isDynamicPattern = Tn = rt.isStaticPattern = void 0;
3295
3297
 
3296
3298
  const yn = p.default;
3297
3299
 
@@ -3383,13 +3385,13 @@ function Bn(t) {
3383
3385
  return t.filter($n);
3384
3386
  }
3385
3387
 
3386
- var Gn = rt.getNegativePatterns = Bn;
3388
+ var qn = rt.getNegativePatterns = Bn;
3387
3389
 
3388
- function qn(t) {
3390
+ function Gn(t) {
3389
3391
  return t.filter(In);
3390
3392
  }
3391
3393
 
3392
- var Un = rt.getPositivePatterns = qn;
3394
+ var Un = rt.getPositivePatterns = Gn;
3393
3395
 
3394
3396
  function Wn(t) {
3395
3397
  return t.filter((t => !Xn(t)));
@@ -3695,15 +3697,15 @@ Object.defineProperty(v, "__esModule", {
3695
3697
  value: true
3696
3698
  });
3697
3699
 
3698
- var Is = v.string = Zs = v.stream = Xs = v.pattern = Vs = v.path = Ws = v.fs = qs = v.errno = Bs = v.array = void 0;
3700
+ var Is = v.string = Zs = v.stream = Xs = v.pattern = Vs = v.path = Ws = v.fs = Gs = v.errno = Bs = v.array = void 0;
3699
3701
 
3700
3702
  const Ns = m;
3701
3703
 
3702
3704
  var Bs = v.array = Ns;
3703
3705
 
3704
- const Gs = R;
3706
+ const qs = R;
3705
3707
 
3706
- var qs = v.errno = Gs;
3708
+ var Gs = v.errno = qs;
3707
3709
 
3708
3710
  const Us = C;
3709
3711
 
@@ -3975,7 +3977,7 @@ Object.defineProperty(Ai, "__esModule", {
3975
3977
  value: true
3976
3978
  });
3977
3979
 
3978
- var $i = Ai.statSync = qi = Ai.stat = Bi = Ai.Settings = void 0;
3980
+ var $i = Ai.statSync = Gi = Ai.stat = Bi = Ai.Settings = void 0;
3979
3981
 
3980
3982
  const ji = bi;
3981
3983
 
@@ -3985,7 +3987,7 @@ const Ni = ki;
3985
3987
 
3986
3988
  var Bi = Ai.Settings = Ni.default;
3987
3989
 
3988
- function Gi(t, e, r) {
3990
+ function qi(t, e, r) {
3989
3991
  if (typeof e === "function") {
3990
3992
  ji.read(t, Wi(), e);
3991
3993
  return;
@@ -3993,7 +3995,7 @@ function Gi(t, e, r) {
3993
3995
  ji.read(t, Wi(e), r);
3994
3996
  }
3995
3997
 
3996
- var qi = Ai.stat = Gi;
3998
+ var Gi = Ai.stat = qi;
3997
3999
 
3998
4000
  function Ui(t, e) {
3999
4001
  const r = Wi(e);
@@ -4304,7 +4306,7 @@ function jo(t, e) {
4304
4306
  if (!e.stats && Fo.IS_SUPPORT_READDIR_WITH_FILE_TYPES) {
4305
4307
  return No(t, e);
4306
4308
  }
4307
- return Go(t, e);
4309
+ return qo(t, e);
4308
4310
  }
4309
4311
 
4310
4312
  var Io = Lo.read = jo;
@@ -4335,7 +4337,7 @@ function No(t, e) {
4335
4337
 
4336
4338
  var Bo = Lo.readdirWithFileTypes = No;
4337
4339
 
4338
- function Go(t, e) {
4340
+ function qo(t, e) {
4339
4341
  const r = e.fs.readdirSync(t);
4340
4342
  return r.map((r => {
4341
4343
  const n = $o.joinPathSegments(t, r, e.pathSegmentSeparator);
@@ -4352,9 +4354,9 @@ function Go(t, e) {
4352
4354
  }));
4353
4355
  }
4354
4356
 
4355
- Ho = Lo.readdir = Go;
4357
+ Ho = Lo.readdir = qo;
4356
4358
 
4357
- var qo = {};
4359
+ var Go = {};
4358
4360
 
4359
4361
  var Uo = {};
4360
4362
 
@@ -4386,7 +4388,7 @@ const Wo = t.getDefaultExportFromCjs(Uo);
4386
4388
 
4387
4389
  "use strict";
4388
4390
 
4389
- Object.defineProperty(qo, "__esModule", {
4391
+ Object.defineProperty(Go, "__esModule", {
4390
4392
  value: true
4391
4393
  });
4392
4394
 
@@ -4415,7 +4417,7 @@ let Xo = class Settings {
4415
4417
  }
4416
4418
  };
4417
4419
 
4418
- var Yo = qo.default = Xo;
4420
+ var Yo = Go.default = Xo;
4419
4421
 
4420
4422
  "use strict";
4421
4423
 
@@ -4429,7 +4431,7 @@ const zo = Ei;
4429
4431
 
4430
4432
  const Jo = Lo;
4431
4433
 
4432
- const ta = qo;
4434
+ const ta = Go;
4433
4435
 
4434
4436
  Zo = Si.Settings = ta.default;
4435
4437
 
@@ -4972,15 +4974,15 @@ function Ba(t, e) {
4972
4974
  t(null, e);
4973
4975
  }
4974
4976
 
4975
- var Ga = {};
4977
+ var qa = {};
4976
4978
 
4977
4979
  "use strict";
4978
4980
 
4979
- Object.defineProperty(Ga, "__esModule", {
4981
+ Object.defineProperty(qa, "__esModule", {
4980
4982
  value: true
4981
4983
  });
4982
4984
 
4983
- const qa = d.default;
4985
+ const Ga = d.default;
4984
4986
 
4985
4987
  const Ua = mi;
4986
4988
 
@@ -4989,7 +4991,7 @@ class StreamProvider {
4989
4991
  this._root = t;
4990
4992
  this._settings = e;
4991
4993
  this._reader = new Ua.default(this._root, this._settings);
4992
- this._stream = new qa.Readable({
4994
+ this._stream = new Ga.Readable({
4993
4995
  objectMode: true,
4994
4996
  read: () => {},
4995
4997
  destroy: () => {
@@ -5014,7 +5016,7 @@ class StreamProvider {
5014
5016
  }
5015
5017
  }
5016
5018
 
5017
- var Wa = Ga.default = StreamProvider;
5019
+ var Wa = qa.default = StreamProvider;
5018
5020
 
5019
5021
  var Ka = {};
5020
5022
 
@@ -5157,7 +5159,7 @@ var iu = yi.Settings = _u = yi.walkStream = hu = yi.walkSync = fu = yi.walk = vo
5157
5159
 
5158
5160
  const ou = vi;
5159
5161
 
5160
- const au = Ga;
5162
+ const au = qa;
5161
5163
 
5162
5164
  const uu = Ka;
5163
5165
 
@@ -5508,13 +5510,13 @@ class DeepFilter {
5508
5510
  }
5509
5511
  }
5510
5512
 
5511
- var Gu = Hu.default = DeepFilter;
5513
+ var qu = Hu.default = DeepFilter;
5512
5514
 
5513
- var qu = {};
5515
+ var Gu = {};
5514
5516
 
5515
5517
  "use strict";
5516
5518
 
5517
- Object.defineProperty(qu, "__esModule", {
5519
+ Object.defineProperty(Gu, "__esModule", {
5518
5520
  value: true
5519
5521
  });
5520
5522
 
@@ -5603,7 +5605,7 @@ class EntryFilter {
5603
5605
  }
5604
5606
  }
5605
5607
 
5606
- var Wu = qu.default = EntryFilter;
5608
+ var Wu = Gu.default = EntryFilter;
5607
5609
 
5608
5610
  var Ku = {};
5609
5611
 
@@ -5676,7 +5678,7 @@ const zu = p.default;
5676
5678
 
5677
5679
  const Ju = Hu;
5678
5680
 
5679
- const tc = qu;
5681
+ const tc = Gu;
5680
5682
 
5681
5683
  const ec = Ku;
5682
5684