lakutata 2.0.80 → 2.0.81

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 (394) hide show
  1. package/com/cacher.cjs +8 -10
  2. package/com/cacher.d.ts +83 -14
  3. package/com/cacher.mjs +8 -10
  4. package/com/database.cjs +11 -11
  5. package/com/database.mjs +11 -11
  6. package/com/docker.cjs +17 -19
  7. package/com/docker.d.ts +3 -141
  8. package/com/docker.mjs +13 -15
  9. package/com/entrypoint.cjs +7 -5
  10. package/com/entrypoint.mjs +7 -5
  11. package/com/logger.cjs +7 -7
  12. package/com/logger.mjs +7 -7
  13. package/com/monitor.cjs +5 -3
  14. package/com/monitor.mjs +5 -3
  15. package/decorator/ctrl.cjs +3 -3
  16. package/decorator/ctrl.mjs +3 -3
  17. package/decorator/orm.cjs +98 -98
  18. package/decorator/orm.mjs +142 -56
  19. package/helper.cjs +9 -11
  20. package/helper.mjs +5 -7
  21. package/lakutata.cjs +23 -30
  22. package/lakutata.mjs +14 -18
  23. package/orm.cjs +1423 -886
  24. package/orm.mjs +1474 -724
  25. package/package.json +1 -1
  26. package/provider/database.cjs +11 -11
  27. package/provider/database.mjs +11 -11
  28. package/provider/passwordHash.cjs +4 -2
  29. package/provider/passwordHash.mjs +4 -2
  30. package/src/components/Database.cjs +11 -11
  31. package/src/components/Database.mjs +11 -11
  32. package/src/components/Logger.cjs +7 -7
  33. package/src/components/Logger.mjs +7 -7
  34. package/src/components/cacher/Cacher.cjs +1178 -264
  35. package/src/components/cacher/Cacher.mjs +1087 -173
  36. package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +479 -2963
  37. package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +469 -2947
  38. package/src/components/docker/ConnectionOptionsBuilder.cjs +15 -17
  39. package/src/components/docker/ConnectionOptionsBuilder.mjs +13 -15
  40. package/src/components/docker/Docker.cjs +4884 -4945
  41. package/src/components/docker/Docker.mjs +4902 -4963
  42. package/src/components/docker/lib/DockerContainer.cjs +23 -25
  43. package/src/components/docker/lib/DockerContainer.mjs +17 -19
  44. package/src/components/docker/lib/DockerContainerTTY.cjs +9 -11
  45. package/src/components/docker/lib/DockerContainerTTY.mjs +9 -11
  46. package/src/components/docker/lib/DockerImage.cjs +4 -2
  47. package/src/components/docker/lib/DockerImage.mjs +4 -2
  48. package/src/components/entrypoint/Entrypoint.cjs +2170 -1678
  49. package/src/components/entrypoint/Entrypoint.mjs +2126 -1634
  50. package/src/components/entrypoint/lib/AccessControl.cjs +4 -2
  51. package/src/components/entrypoint/lib/AccessControl.mjs +4 -2
  52. package/src/components/entrypoint/lib/AccessControlRule.cjs +4 -2
  53. package/src/components/entrypoint/lib/AccessControlRule.mjs +4 -2
  54. package/src/components/entrypoint/lib/Controller.cjs +4 -2
  55. package/src/components/entrypoint/lib/Controller.mjs +4 -2
  56. package/src/components/monitor/AliveMonitor.cjs +4 -2
  57. package/src/components/monitor/AliveMonitor.mjs +4 -2
  58. package/src/components/monitor/CpuMonitor.cjs +5 -3
  59. package/src/components/monitor/CpuMonitor.mjs +5 -3
  60. package/src/components/monitor/EventLoopMonitor.cjs +4 -2
  61. package/src/components/monitor/EventLoopMonitor.mjs +4 -2
  62. package/src/components/monitor/HttpRequestMonitor.cjs +5 -3
  63. package/src/components/monitor/HttpRequestMonitor.mjs +5 -3
  64. package/src/components/monitor/MemoryMonitor.cjs +5 -3
  65. package/src/components/monitor/MemoryMonitor.mjs +5 -3
  66. package/src/decorators/ctrl/CLIAction.cjs +3 -3
  67. package/src/decorators/ctrl/CLIAction.mjs +3 -3
  68. package/src/decorators/ctrl/HTTPAction.cjs +3 -3
  69. package/src/decorators/ctrl/HTTPAction.mjs +3 -3
  70. package/src/decorators/ctrl/ServiceAction.cjs +3 -3
  71. package/src/decorators/ctrl/ServiceAction.mjs +3 -3
  72. package/src/decorators/ctrl/http/DELETE.cjs +3 -3
  73. package/src/decorators/ctrl/http/DELETE.mjs +3 -3
  74. package/src/decorators/ctrl/http/GET.cjs +3 -3
  75. package/src/decorators/ctrl/http/GET.mjs +3 -3
  76. package/src/decorators/ctrl/http/HEAD.cjs +3 -3
  77. package/src/decorators/ctrl/http/HEAD.mjs +3 -3
  78. package/src/decorators/ctrl/http/OPTIONS.cjs +3 -3
  79. package/src/decorators/ctrl/http/OPTIONS.mjs +3 -3
  80. package/src/decorators/ctrl/http/PATCH.cjs +3 -3
  81. package/src/decorators/ctrl/http/PATCH.mjs +3 -3
  82. package/src/decorators/ctrl/http/POST.cjs +3 -3
  83. package/src/decorators/ctrl/http/POST.mjs +3 -3
  84. package/src/decorators/ctrl/http/PUT.cjs +3 -3
  85. package/src/decorators/ctrl/http/PUT.mjs +3 -3
  86. package/src/decorators/orm/AfterInsert.cjs +17 -39
  87. package/src/decorators/orm/AfterInsert.mjs +18 -38
  88. package/src/decorators/orm/AfterLoad.cjs +17 -39
  89. package/src/decorators/orm/AfterLoad.mjs +18 -38
  90. package/src/decorators/orm/AfterRecover.cjs +17 -39
  91. package/src/decorators/orm/AfterRecover.mjs +18 -38
  92. package/src/decorators/orm/AfterRemove.cjs +17 -39
  93. package/src/decorators/orm/AfterRemove.mjs +18 -38
  94. package/src/decorators/orm/AfterSoftRemove.cjs +17 -39
  95. package/src/decorators/orm/AfterSoftRemove.mjs +18 -38
  96. package/src/decorators/orm/AfterUpdate.cjs +17 -39
  97. package/src/decorators/orm/AfterUpdate.mjs +18 -38
  98. package/src/decorators/orm/BeforeInsert.cjs +17 -39
  99. package/src/decorators/orm/BeforeInsert.mjs +18 -38
  100. package/src/decorators/orm/BeforeRecover.cjs +17 -39
  101. package/src/decorators/orm/BeforeRecover.mjs +18 -38
  102. package/src/decorators/orm/BeforeRemove.cjs +17 -39
  103. package/src/decorators/orm/BeforeRemove.mjs +18 -38
  104. package/src/decorators/orm/BeforeSoftRemove.cjs +17 -39
  105. package/src/decorators/orm/BeforeSoftRemove.mjs +18 -38
  106. package/src/decorators/orm/BeforeUpdate.cjs +17 -39
  107. package/src/decorators/orm/BeforeUpdate.mjs +18 -38
  108. package/src/decorators/orm/Check.cjs +17 -42
  109. package/src/decorators/orm/Check.mjs +18 -41
  110. package/src/decorators/orm/ChildEntity.cjs +17 -42
  111. package/src/decorators/orm/ChildEntity.mjs +18 -41
  112. package/src/decorators/orm/Column.cjs +17 -74
  113. package/src/decorators/orm/Column.mjs +19 -74
  114. package/src/decorators/orm/CreateDateColumn.cjs +17 -38
  115. package/src/decorators/orm/CreateDateColumn.mjs +18 -37
  116. package/src/decorators/orm/DeleteDateColumn.cjs +17 -38
  117. package/src/decorators/orm/DeleteDateColumn.mjs +17 -36
  118. package/src/decorators/orm/Entity.cjs +17 -48
  119. package/src/decorators/orm/Entity.mjs +17 -46
  120. package/src/decorators/orm/EventSubscriber.cjs +17 -35
  121. package/src/decorators/orm/EventSubscriber.mjs +18 -34
  122. package/src/decorators/orm/Exclusion.cjs +17 -42
  123. package/src/decorators/orm/Exclusion.mjs +18 -41
  124. package/src/decorators/orm/Generated.cjs +17 -37
  125. package/src/decorators/orm/Generated.mjs +18 -36
  126. package/src/decorators/orm/Index.cjs +17 -54
  127. package/src/decorators/orm/Index.mjs +19 -54
  128. package/src/decorators/orm/JoinColumn.cjs +17 -42
  129. package/src/decorators/orm/JoinColumn.mjs +18 -41
  130. package/src/decorators/orm/JoinTable.cjs +17 -43
  131. package/src/decorators/orm/JoinTable.mjs +17 -41
  132. package/src/decorators/orm/ManyToMany.cjs +17 -55
  133. package/src/decorators/orm/ManyToMany.mjs +17 -53
  134. package/src/decorators/orm/ManyToOne.cjs +17 -55
  135. package/src/decorators/orm/ManyToOne.mjs +17 -53
  136. package/src/decorators/orm/ObjectIdColumn.cjs +17 -41
  137. package/src/decorators/orm/ObjectIdColumn.mjs +18 -40
  138. package/src/decorators/orm/OneToMany.cjs +17 -47
  139. package/src/decorators/orm/OneToMany.mjs +19 -47
  140. package/src/decorators/orm/OneToOne.cjs +17 -55
  141. package/src/decorators/orm/OneToOne.mjs +17 -53
  142. package/src/decorators/orm/PrimaryColumn.cjs +17 -62
  143. package/src/decorators/orm/PrimaryColumn.mjs +19 -62
  144. package/src/decorators/orm/PrimaryGeneratedColumn.cjs +17 -67
  145. package/src/decorators/orm/PrimaryGeneratedColumn.mjs +19 -67
  146. package/src/decorators/orm/RelationId.cjs +17 -39
  147. package/src/decorators/orm/RelationId.mjs +18 -38
  148. package/src/decorators/orm/TableInheritance.cjs +17 -39
  149. package/src/decorators/orm/TableInheritance.mjs +18 -38
  150. package/src/decorators/orm/Tree.cjs +17 -37
  151. package/src/decorators/orm/Tree.mjs +18 -36
  152. package/src/decorators/orm/TreeChildren.cjs +17 -44
  153. package/src/decorators/orm/TreeChildren.mjs +17 -42
  154. package/src/decorators/orm/TreeLevelColumn.cjs +17 -38
  155. package/src/decorators/orm/TreeLevelColumn.mjs +17 -36
  156. package/src/decorators/orm/TreeParent.cjs +17 -44
  157. package/src/decorators/orm/TreeParent.mjs +17 -42
  158. package/src/decorators/orm/Unique.cjs +17 -57
  159. package/src/decorators/orm/Unique.mjs +19 -57
  160. package/src/decorators/orm/UpdateDateColumn.cjs +17 -38
  161. package/src/decorators/orm/UpdateDateColumn.mjs +18 -37
  162. package/src/decorators/orm/VersionColumn.cjs +17 -38
  163. package/src/decorators/orm/VersionColumn.mjs +18 -37
  164. package/src/decorators/orm/ViewColumn.cjs +17 -38
  165. package/src/decorators/orm/ViewColumn.mjs +18 -37
  166. package/src/decorators/orm/ViewEntity.cjs +17 -47
  167. package/src/decorators/orm/ViewEntity.mjs +18 -46
  168. package/src/decorators/orm/VirtualColumn.cjs +17 -55
  169. package/src/decorators/orm/VirtualColumn.mjs +17 -53
  170. package/src/lib/base/BaseObject.cjs +4 -2
  171. package/src/lib/base/BaseObject.mjs +4 -2
  172. package/src/lib/base/EventEmitter.cjs +1200 -1193
  173. package/src/lib/base/EventEmitter.mjs +1201 -1194
  174. package/src/lib/base/internal/ApplicationConfigLoader.cjs +4 -2
  175. package/src/lib/base/internal/ApplicationConfigLoader.mjs +4 -2
  176. package/src/lib/base/internal/ControllerEntrypoint.cjs +3 -3
  177. package/src/lib/base/internal/ControllerEntrypoint.mjs +3 -3
  178. package/src/lib/base/internal/DataValidator.cjs +176 -179
  179. package/src/lib/base/internal/DataValidator.mjs +177 -180
  180. package/src/lib/base/internal/ModuleConfigLoader.cjs +4 -3
  181. package/src/lib/base/internal/ModuleConfigLoader.mjs +4 -3
  182. package/src/lib/base/internal/ObjectType.cjs +4 -2
  183. package/src/lib/base/internal/ObjectType.mjs +4 -2
  184. package/src/lib/base/internal/PatternManager.cjs +740 -735
  185. package/src/lib/base/internal/PatternManager.mjs +745 -740
  186. package/src/lib/base/internal/StringifyPattern.cjs +1 -1
  187. package/src/lib/base/internal/StringifyPattern.mjs +1 -1
  188. package/src/lib/core/Application.cjs +151 -147
  189. package/src/lib/core/Application.mjs +199 -197
  190. package/src/lib/core/Component.cjs +4 -2
  191. package/src/lib/core/Component.mjs +4 -2
  192. package/src/lib/core/Container.cjs +4 -2
  193. package/src/lib/core/Container.mjs +4 -2
  194. package/src/lib/core/Module.cjs +5 -3
  195. package/src/lib/core/Module.mjs +5 -3
  196. package/src/lib/core/Provider.cjs +4 -2
  197. package/src/lib/core/Provider.mjs +4 -2
  198. package/src/lib/helpers/Glob.cjs +970 -721
  199. package/src/lib/helpers/Glob.mjs +1036 -787
  200. package/src/lib/helpers/IsHtml.cjs +7 -13
  201. package/src/lib/helpers/IsHtml.mjs +7 -13
  202. package/src/lib/helpers/IsXML.cjs +1158 -1016
  203. package/src/lib/helpers/IsXML.mjs +871 -729
  204. package/src/lib/helpers/MD5.cjs +1 -1
  205. package/src/lib/helpers/MD5.mjs +1 -1
  206. package/src/lib/helpers/NonceStr.cjs +1 -1
  207. package/src/lib/helpers/NonceStr.mjs +1 -1
  208. package/src/lib/helpers/ObjectHash.cjs +379 -372
  209. package/src/lib/helpers/ObjectHash.mjs +379 -372
  210. package/src/lib/helpers/RandomString.cjs +168 -147
  211. package/src/lib/helpers/RandomString.mjs +167 -146
  212. package/src/lib/helpers/SHA1.cjs +1 -1
  213. package/src/lib/helpers/SHA1.mjs +1 -1
  214. package/src/lib/helpers/SHA256.cjs +1 -1
  215. package/src/lib/helpers/SHA256.mjs +1 -1
  216. package/src/lib/helpers/SortArray.cjs +1 -1
  217. package/src/lib/helpers/SortArray.mjs +1 -1
  218. package/src/lib/helpers/Statistics.cjs +1 -1
  219. package/src/lib/helpers/Statistics.mjs +1 -1
  220. package/src/lib/helpers/URLBuilder.cjs +355 -355
  221. package/src/lib/helpers/URLBuilder.mjs +350 -350
  222. package/src/lib/helpers/UUID.cjs +1 -1
  223. package/src/lib/helpers/UUID.mjs +1 -1
  224. package/src/lib/ioc/DependencyInjectionContainer.cjs +32 -30
  225. package/src/lib/ioc/DependencyInjectionContainer.mjs +12 -10
  226. package/src/lib/ioc/ListModules.cjs +5174 -5249
  227. package/src/lib/ioc/ListModules.mjs +5177 -5252
  228. package/src/lib/validation/VLD.cjs +4080 -3902
  229. package/src/lib/validation/VLD.mjs +2970 -2792
  230. package/src/options/ApplicationOptions.cjs +4 -2
  231. package/src/options/ApplicationOptions.mjs +4 -2
  232. package/src/options/LoadAnonymousObjectOptions.cjs +4 -2
  233. package/src/options/LoadAnonymousObjectOptions.mjs +4 -2
  234. package/src/options/LoadNamedObjectOptions.cjs +4 -2
  235. package/src/options/LoadNamedObjectOptions.mjs +4 -2
  236. package/src/options/LoadObjectOptions.cjs +4 -2
  237. package/src/options/LoadObjectOptions.mjs +4 -2
  238. package/src/options/ModuleLoadObjectsOptions.cjs +4 -2
  239. package/src/options/ModuleLoadObjectsOptions.mjs +4 -2
  240. package/src/options/ModuleOptions.cjs +4 -4
  241. package/src/options/ModuleOptions.mjs +4 -4
  242. package/src/options/OverridableNamedObjectOptions.cjs +4 -2
  243. package/src/options/OverridableNamedObjectOptions.mjs +4 -2
  244. package/src/options/OverridableObjectOptions.cjs +4 -2
  245. package/src/options/OverridableObjectOptions.mjs +4 -2
  246. package/src/providers/Database.cjs +11 -11
  247. package/src/providers/Database.mjs +11 -11
  248. package/src/providers/PasswordHash.cjs +5 -3
  249. package/src/providers/PasswordHash.mjs +190 -188
  250. package/src/providers/migration/GenerateMigration.cjs +15 -19
  251. package/src/providers/migration/GenerateMigration.mjs +15 -19
  252. package/vendor/Package.10.cjs +2 -8
  253. package/vendor/Package.10.mjs +2 -8
  254. package/vendor/Package.11.cjs +5 -83
  255. package/vendor/Package.11.mjs +5 -77
  256. package/vendor/Package.112.cjs +48900 -0
  257. package/vendor/Package.112.mjs +48764 -0
  258. package/vendor/Package.12.cjs +4 -2
  259. package/vendor/Package.12.mjs +6 -4
  260. package/vendor/Package.13.cjs +87 -1
  261. package/vendor/Package.13.mjs +81 -1
  262. package/vendor/Package.14.cjs +1 -14057
  263. package/vendor/Package.14.mjs +1 -14031
  264. package/vendor/Package.15.cjs +1 -1
  265. package/vendor/Package.15.mjs +1 -1
  266. package/vendor/Package.16.cjs +18129 -1935
  267. package/vendor/Package.16.mjs +18115 -1839
  268. package/vendor/Package.17.cjs +1922 -47918
  269. package/vendor/Package.17.mjs +1874 -47937
  270. package/vendor/Package.18.cjs +35 -1
  271. package/vendor/Package.18.mjs +35 -1
  272. package/vendor/Package.19.cjs +37 -0
  273. package/vendor/Package.19.mjs +35 -0
  274. package/vendor/Package.2.cjs +5739 -5710
  275. package/vendor/Package.2.mjs +5733 -5704
  276. package/vendor/Package.20.cjs +37 -0
  277. package/vendor/Package.20.mjs +35 -0
  278. package/vendor/Package.21.cjs +37 -0
  279. package/vendor/Package.21.mjs +35 -0
  280. package/vendor/Package.22.cjs +37 -0
  281. package/vendor/Package.22.mjs +35 -0
  282. package/vendor/Package.23.cjs +37 -0
  283. package/vendor/Package.23.mjs +35 -0
  284. package/vendor/Package.24.cjs +37 -0
  285. package/vendor/Package.24.mjs +35 -0
  286. package/vendor/Package.25.cjs +37 -0
  287. package/vendor/Package.25.mjs +35 -0
  288. package/vendor/Package.26.cjs +37 -0
  289. package/vendor/Package.26.mjs +35 -0
  290. package/vendor/Package.27.cjs +37 -0
  291. package/vendor/Package.27.mjs +35 -0
  292. package/vendor/Package.28.cjs +37 -0
  293. package/vendor/Package.28.mjs +35 -0
  294. package/vendor/Package.29.cjs +40 -0
  295. package/vendor/Package.29.mjs +38 -0
  296. package/vendor/Package.30.cjs +41 -0
  297. package/vendor/Package.30.mjs +39 -0
  298. package/vendor/Package.31.cjs +72 -0
  299. package/vendor/Package.31.mjs +70 -0
  300. package/vendor/Package.32.cjs +37 -0
  301. package/vendor/Package.32.mjs +35 -0
  302. package/vendor/Package.33.cjs +37 -0
  303. package/vendor/Package.33.mjs +35 -0
  304. package/vendor/Package.34.cjs +46 -0
  305. package/vendor/Package.34.mjs +44 -0
  306. package/vendor/Package.35.cjs +34 -0
  307. package/vendor/Package.35.mjs +32 -0
  308. package/vendor/Package.36.cjs +40 -0
  309. package/vendor/Package.36.mjs +38 -0
  310. package/vendor/Package.37.cjs +36 -0
  311. package/vendor/Package.37.mjs +34 -0
  312. package/vendor/Package.38.cjs +52 -0
  313. package/vendor/Package.38.mjs +50 -0
  314. package/vendor/Package.39.cjs +41 -0
  315. package/vendor/Package.39.mjs +39 -0
  316. package/vendor/Package.4.cjs +884 -874
  317. package/vendor/Package.4.mjs +884 -874
  318. package/vendor/Package.40.cjs +42 -0
  319. package/vendor/Package.40.mjs +40 -0
  320. package/vendor/Package.41.cjs +53 -0
  321. package/vendor/Package.41.mjs +51 -0
  322. package/vendor/Package.42.cjs +53 -0
  323. package/vendor/Package.42.mjs +51 -0
  324. package/vendor/Package.43.cjs +40 -0
  325. package/vendor/Package.43.mjs +38 -0
  326. package/vendor/Package.44.cjs +46 -0
  327. package/vendor/Package.44.mjs +44 -0
  328. package/vendor/Package.45.cjs +53 -0
  329. package/vendor/Package.45.mjs +51 -0
  330. package/vendor/Package.46.cjs +59 -0
  331. package/vendor/Package.46.mjs +57 -0
  332. package/vendor/Package.47.cjs +65 -0
  333. package/vendor/Package.47.mjs +63 -0
  334. package/vendor/Package.48.cjs +38 -0
  335. package/vendor/Package.48.mjs +36 -0
  336. package/vendor/Package.49.cjs +38 -0
  337. package/vendor/Package.49.mjs +36 -0
  338. package/vendor/Package.5.cjs +15 -11
  339. package/vendor/Package.5.mjs +11 -7
  340. package/vendor/Package.50.cjs +36 -0
  341. package/vendor/Package.50.mjs +34 -0
  342. package/vendor/Package.51.cjs +43 -0
  343. package/vendor/Package.51.mjs +41 -0
  344. package/vendor/Package.52.cjs +37 -0
  345. package/vendor/Package.52.mjs +35 -0
  346. package/vendor/Package.53.cjs +43 -0
  347. package/vendor/Package.53.mjs +41 -0
  348. package/vendor/Package.54.cjs +55 -0
  349. package/vendor/Package.54.mjs +53 -0
  350. package/vendor/Package.55.cjs +37 -0
  351. package/vendor/Package.55.mjs +35 -0
  352. package/vendor/Package.56.cjs +37 -0
  353. package/vendor/Package.56.mjs +35 -0
  354. package/vendor/Package.57.cjs +37 -0
  355. package/vendor/Package.57.mjs +35 -0
  356. package/vendor/Package.58.cjs +45 -0
  357. package/vendor/Package.58.mjs +43 -0
  358. package/vendor/Package.59.cjs +53 -0
  359. package/vendor/Package.59.mjs +51 -0
  360. package/vendor/Package.6.cjs +520 -511
  361. package/vendor/Package.6.mjs +543 -534
  362. package/vendor/Package.60.cjs +47649 -0
  363. package/vendor/Package.60.mjs +47606 -0
  364. package/vendor/Package.610.cjs +11 -11
  365. package/vendor/Package.610.mjs +11 -11
  366. package/vendor/Package.611.cjs +33 -23
  367. package/vendor/Package.611.mjs +19 -9
  368. package/vendor/Package.612.cjs +42 -36
  369. package/vendor/Package.612.mjs +35 -29
  370. package/vendor/Package.613.cjs +5 -4
  371. package/vendor/Package.613.mjs +5 -4
  372. package/vendor/Package.62.cjs +92 -89
  373. package/vendor/Package.62.mjs +185 -182
  374. package/vendor/Package.63.cjs +509 -166
  375. package/vendor/Package.63.mjs +490 -165
  376. package/vendor/Package.64.cjs +139 -511
  377. package/vendor/Package.64.mjs +139 -491
  378. package/vendor/Package.65.cjs +4135 -150
  379. package/vendor/Package.65.mjs +4143 -150
  380. package/vendor/Package.66.cjs +346 -4150
  381. package/vendor/Package.66.mjs +346 -4158
  382. package/vendor/Package.67.cjs +412 -261
  383. package/vendor/Package.67.mjs +410 -259
  384. package/vendor/Package.68.cjs +397 -405
  385. package/vendor/Package.68.mjs +227 -242
  386. package/vendor/Package.8.cjs +0 -4
  387. package/vendor/Package.8.mjs +0 -4
  388. package/vendor/Package.9.cjs +132 -118
  389. package/vendor/Package.9.mjs +138 -124
  390. package/vendor/TypeDef.internal.3.d.ts +0 -4
  391. package/vendor/Package.102.cjs +0 -48773
  392. package/vendor/Package.102.mjs +0 -48697
  393. package/vendor/Package.122.cjs +0 -3
  394. package/vendor/Package.122.mjs +0 -1
@@ -1,6 +1,6 @@
1
1
  import { g as r } from "../../../vendor/Package.5.mjs";
2
2
 
3
- import "../../../vendor/Package.13.mjs";
3
+ import "../../../vendor/Package.15.mjs";
4
4
 
5
5
  import t from "crypto";
6
6
 
@@ -10,397 +10,404 @@ var e = {
10
10
 
11
11
  var n = e.exports;
12
12
 
13
- (function(r, e) {
14
- "use strict";
15
- var n = t;
16
- e = r.exports = i;
17
- function i(r, t) {
18
- t = a(r, t);
19
- return c(r, t);
20
- }
21
- e.sha1 = function(r) {
22
- return i(r);
23
- };
24
- e.keys = function(r) {
25
- return i(r, {
26
- excludeValues: true,
27
- algorithm: "sha1",
28
- encoding: "hex"
29
- });
30
- };
31
- e.MD5 = function(r) {
32
- return i(r, {
33
- algorithm: "md5",
34
- encoding: "hex"
35
- });
36
- };
37
- e.keysMD5 = function(r) {
38
- return i(r, {
39
- algorithm: "md5",
40
- encoding: "hex",
41
- excludeValues: true
42
- });
43
- };
44
- var o = n.getHashes ? n.getHashes().slice() : [ "sha1", "md5" ];
45
- o.push("passthrough");
46
- var u = [ "buffer", "hex", "binary", "base64" ];
47
- function a(r, t) {
48
- t = t || {};
49
- var e = {};
50
- e.algorithm = t.algorithm || "sha1";
51
- e.encoding = t.encoding || "hex";
52
- e.excludeValues = t.excludeValues ? true : false;
53
- e.algorithm = e.algorithm.toLowerCase();
54
- e.encoding = e.encoding.toLowerCase();
55
- e.ignoreUnknown = t.ignoreUnknown !== true ? false : true;
56
- e.respectType = t.respectType === false ? false : true;
57
- e.respectFunctionNames = t.respectFunctionNames === false ? false : true;
58
- e.respectFunctionProperties = t.respectFunctionProperties === false ? false : true;
59
- e.unorderedArrays = t.unorderedArrays !== true ? false : true;
60
- e.unorderedSets = t.unorderedSets === false ? false : true;
61
- e.unorderedObjects = t.unorderedObjects === false ? false : true;
62
- e.replacer = t.replacer || undefined;
63
- e.excludeKeys = t.excludeKeys || undefined;
64
- if (typeof r === "undefined") {
65
- throw new Error("Object argument required.");
13
+ var i;
14
+
15
+ function o() {
16
+ if (i) return e.exports;
17
+ i = 1;
18
+ (function(r, e) {
19
+ "use strict";
20
+ var n = t;
21
+ e = r.exports = i;
22
+ function i(r, t) {
23
+ t = a(r, t);
24
+ return c(r, t);
66
25
  }
67
- for (var n = 0; n < o.length; ++n) {
68
- if (o[n].toLowerCase() === e.algorithm.toLowerCase()) {
69
- e.algorithm = o[n];
26
+ e.sha1 = function(r) {
27
+ return i(r);
28
+ };
29
+ e.keys = function(r) {
30
+ return i(r, {
31
+ excludeValues: true,
32
+ algorithm: "sha1",
33
+ encoding: "hex"
34
+ });
35
+ };
36
+ e.MD5 = function(r) {
37
+ return i(r, {
38
+ algorithm: "md5",
39
+ encoding: "hex"
40
+ });
41
+ };
42
+ e.keysMD5 = function(r) {
43
+ return i(r, {
44
+ algorithm: "md5",
45
+ encoding: "hex",
46
+ excludeValues: true
47
+ });
48
+ };
49
+ var o = n.getHashes ? n.getHashes().slice() : [ "sha1", "md5" ];
50
+ o.push("passthrough");
51
+ var u = [ "buffer", "hex", "binary", "base64" ];
52
+ function a(r, t) {
53
+ t = t || {};
54
+ var e = {};
55
+ e.algorithm = t.algorithm || "sha1";
56
+ e.encoding = t.encoding || "hex";
57
+ e.excludeValues = t.excludeValues ? true : false;
58
+ e.algorithm = e.algorithm.toLowerCase();
59
+ e.encoding = e.encoding.toLowerCase();
60
+ e.ignoreUnknown = t.ignoreUnknown !== true ? false : true;
61
+ e.respectType = t.respectType === false ? false : true;
62
+ e.respectFunctionNames = t.respectFunctionNames === false ? false : true;
63
+ e.respectFunctionProperties = t.respectFunctionProperties === false ? false : true;
64
+ e.unorderedArrays = t.unorderedArrays !== true ? false : true;
65
+ e.unorderedSets = t.unorderedSets === false ? false : true;
66
+ e.unorderedObjects = t.unorderedObjects === false ? false : true;
67
+ e.replacer = t.replacer || undefined;
68
+ e.excludeKeys = t.excludeKeys || undefined;
69
+ if (typeof r === "undefined") {
70
+ throw new Error("Object argument required.");
70
71
  }
72
+ for (var n = 0; n < o.length; ++n) {
73
+ if (o[n].toLowerCase() === e.algorithm.toLowerCase()) {
74
+ e.algorithm = o[n];
75
+ }
76
+ }
77
+ if (o.indexOf(e.algorithm) === -1) {
78
+ throw new Error('Algorithm "' + e.algorithm + '" not supported. ' + "supported values: " + o.join(", "));
79
+ }
80
+ if (u.indexOf(e.encoding) === -1 && e.algorithm !== "passthrough") {
81
+ throw new Error('Encoding "' + e.encoding + '" not supported. ' + "supported values: " + u.join(", "));
82
+ }
83
+ return e;
71
84
  }
72
- if (o.indexOf(e.algorithm) === -1) {
73
- throw new Error('Algorithm "' + e.algorithm + '" not supported. ' + "supported values: " + o.join(", "));
74
- }
75
- if (u.indexOf(e.encoding) === -1 && e.algorithm !== "passthrough") {
76
- throw new Error('Encoding "' + e.encoding + '" not supported. ' + "supported values: " + u.join(", "));
77
- }
78
- return e;
79
- }
80
- function s(r) {
81
- if (typeof r !== "function") {
82
- return false;
83
- }
84
- var t = /^function\s+\w*\s*\(\s*\)\s*{\s+\[native code\]\s+}$/i;
85
- return t.exec(Function.prototype.toString.call(r)) != null;
86
- }
87
- function c(r, t) {
88
- var e;
89
- if (t.algorithm !== "passthrough") {
90
- e = n.createHash(t.algorithm);
91
- } else {
92
- e = new l;
93
- }
94
- if (typeof e.write === "undefined") {
95
- e.write = e.update;
96
- e.end = e.update;
97
- }
98
- var i = f(t, e);
99
- i.dispatch(r);
100
- if (!e.update) {
101
- e.end("");
102
- }
103
- if (e.digest) {
104
- return e.digest(t.encoding === "buffer" ? undefined : t.encoding);
105
- }
106
- var o = e.read();
107
- if (t.encoding === "buffer") {
108
- return o;
109
- }
110
- return o.toString(t.encoding);
111
- }
112
- e.writeToStream = function(r, t, e) {
113
- if (typeof e === "undefined") {
114
- e = t;
115
- t = {};
85
+ function s(r) {
86
+ if (typeof r !== "function") {
87
+ return false;
88
+ }
89
+ var t = /^function\s+\w*\s*\(\s*\)\s*{\s+\[native code\]\s+}$/i;
90
+ return t.exec(Function.prototype.toString.call(r)) != null;
116
91
  }
117
- t = a(r, t);
118
- return f(t, e).dispatch(r);
119
- };
120
- function f(r, t, e) {
121
- e = e || [];
122
- var n = function(r) {
123
- if (t.update) {
124
- return t.update(r, "utf8");
92
+ function c(r, t) {
93
+ var e;
94
+ if (t.algorithm !== "passthrough") {
95
+ e = n.createHash(t.algorithm);
125
96
  } else {
126
- return t.write(r, "utf8");
97
+ e = new l;
98
+ }
99
+ if (typeof e.write === "undefined") {
100
+ e.write = e.update;
101
+ e.end = e.update;
127
102
  }
103
+ var i = f(t, e);
104
+ i.dispatch(r);
105
+ if (!e.update) {
106
+ e.end("");
107
+ }
108
+ if (e.digest) {
109
+ return e.digest(t.encoding === "buffer" ? undefined : t.encoding);
110
+ }
111
+ var o = e.read();
112
+ if (t.encoding === "buffer") {
113
+ return o;
114
+ }
115
+ return o.toString(t.encoding);
116
+ }
117
+ e.writeToStream = function(r, t, e) {
118
+ if (typeof e === "undefined") {
119
+ e = t;
120
+ t = {};
121
+ }
122
+ t = a(r, t);
123
+ return f(t, e).dispatch(r);
128
124
  };
129
- return {
130
- dispatch: function(t) {
131
- if (r.replacer) {
132
- t = r.replacer(t);
133
- }
134
- var e = typeof t;
135
- if (t === null) {
136
- e = "null";
137
- }
138
- return this["_" + e](t);
139
- },
140
- _object: function(t) {
141
- var i = /\[object (.*)\]/i;
142
- var o = Object.prototype.toString.call(t);
143
- var u = i.exec(o);
144
- if (!u) {
145
- u = "unknown:[" + o + "]";
125
+ function f(r, t, e) {
126
+ e = e || [];
127
+ var n = function(r) {
128
+ if (t.update) {
129
+ return t.update(r, "utf8");
146
130
  } else {
147
- u = u[1];
131
+ return t.write(r, "utf8");
148
132
  }
149
- u = u.toLowerCase();
150
- var a = null;
151
- if ((a = e.indexOf(t)) >= 0) {
152
- return this.dispatch("[CIRCULAR:" + a + "]");
153
- } else {
154
- e.push(t);
155
- }
156
- if (typeof Buffer !== "undefined" && Buffer.isBuffer && Buffer.isBuffer(t)) {
157
- n("buffer:");
158
- return n(t);
159
- }
160
- if (u !== "object" && u !== "function" && u !== "asyncfunction") {
161
- if (this["_" + u]) {
162
- this["_" + u](t);
163
- } else if (r.ignoreUnknown) {
164
- return n("[" + u + "]");
133
+ };
134
+ return {
135
+ dispatch: function(t) {
136
+ if (r.replacer) {
137
+ t = r.replacer(t);
138
+ }
139
+ var e = typeof t;
140
+ if (t === null) {
141
+ e = "null";
142
+ }
143
+ return this["_" + e](t);
144
+ },
145
+ _object: function(t) {
146
+ var i = /\[object (.*)\]/i;
147
+ var o = Object.prototype.toString.call(t);
148
+ var u = i.exec(o);
149
+ if (!u) {
150
+ u = "unknown:[" + o + "]";
165
151
  } else {
166
- throw new Error('Unknown object type "' + u + '"');
152
+ u = u[1];
167
153
  }
168
- } else {
169
- var c = Object.keys(t);
170
- if (r.unorderedObjects) {
171
- c = c.sort();
154
+ u = u.toLowerCase();
155
+ var a = null;
156
+ if ((a = e.indexOf(t)) >= 0) {
157
+ return this.dispatch("[CIRCULAR:" + a + "]");
158
+ } else {
159
+ e.push(t);
172
160
  }
173
- if (r.respectType !== false && !s(t)) {
174
- c.splice(0, 0, "prototype", "__proto__", "constructor");
161
+ if (typeof Buffer !== "undefined" && Buffer.isBuffer && Buffer.isBuffer(t)) {
162
+ n("buffer:");
163
+ return n(t);
175
164
  }
176
- if (r.excludeKeys) {
177
- c = c.filter((function(t) {
178
- return !r.excludeKeys(t);
165
+ if (u !== "object" && u !== "function" && u !== "asyncfunction") {
166
+ if (this["_" + u]) {
167
+ this["_" + u](t);
168
+ } else if (r.ignoreUnknown) {
169
+ return n("[" + u + "]");
170
+ } else {
171
+ throw new Error('Unknown object type "' + u + '"');
172
+ }
173
+ } else {
174
+ var c = Object.keys(t);
175
+ if (r.unorderedObjects) {
176
+ c = c.sort();
177
+ }
178
+ if (r.respectType !== false && !s(t)) {
179
+ c.splice(0, 0, "prototype", "__proto__", "constructor");
180
+ }
181
+ if (r.excludeKeys) {
182
+ c = c.filter((function(t) {
183
+ return !r.excludeKeys(t);
184
+ }));
185
+ }
186
+ n("object:" + c.length + ":");
187
+ var f = this;
188
+ return c.forEach((function(e) {
189
+ f.dispatch(e);
190
+ n(":");
191
+ if (!r.excludeValues) {
192
+ f.dispatch(t[e]);
193
+ }
194
+ n(",");
179
195
  }));
180
196
  }
181
- n("object:" + c.length + ":");
182
- var f = this;
183
- return c.forEach((function(e) {
184
- f.dispatch(e);
185
- n(":");
186
- if (!r.excludeValues) {
187
- f.dispatch(t[e]);
188
- }
189
- n(",");
190
- }));
191
- }
192
- },
193
- _array: function(t, i) {
194
- i = typeof i !== "undefined" ? i : r.unorderedArrays !== false;
195
- var o = this;
196
- n("array:" + t.length + ":");
197
- if (!i || t.length <= 1) {
198
- return t.forEach((function(r) {
199
- return o.dispatch(r);
197
+ },
198
+ _array: function(t, i) {
199
+ i = typeof i !== "undefined" ? i : r.unorderedArrays !== false;
200
+ var o = this;
201
+ n("array:" + t.length + ":");
202
+ if (!i || t.length <= 1) {
203
+ return t.forEach((function(r) {
204
+ return o.dispatch(r);
205
+ }));
206
+ }
207
+ var u = [];
208
+ var a = t.map((function(t) {
209
+ var n = new l;
210
+ var i = e.slice();
211
+ var o = f(r, n, i);
212
+ o.dispatch(t);
213
+ u = u.concat(i.slice(e.length));
214
+ return n.read().toString();
200
215
  }));
216
+ e = e.concat(u);
217
+ a.sort();
218
+ return this._array(a, false);
219
+ },
220
+ _date: function(r) {
221
+ return n("date:" + r.toJSON());
222
+ },
223
+ _symbol: function(r) {
224
+ return n("symbol:" + r.toString());
225
+ },
226
+ _error: function(r) {
227
+ return n("error:" + r.toString());
228
+ },
229
+ _boolean: function(r) {
230
+ return n("bool:" + r.toString());
231
+ },
232
+ _string: function(r) {
233
+ n("string:" + r.length + ":");
234
+ n(r.toString());
235
+ },
236
+ _function: function(t) {
237
+ n("fn:");
238
+ if (s(t)) {
239
+ this.dispatch("[native]");
240
+ } else {
241
+ this.dispatch(t.toString());
242
+ }
243
+ if (r.respectFunctionNames !== false) {
244
+ this.dispatch("function-name:" + String(t.name));
245
+ }
246
+ if (r.respectFunctionProperties) {
247
+ this._object(t);
248
+ }
249
+ },
250
+ _number: function(r) {
251
+ return n("number:" + r.toString());
252
+ },
253
+ _xml: function(r) {
254
+ return n("xml:" + r.toString());
255
+ },
256
+ _null: function() {
257
+ return n("Null");
258
+ },
259
+ _undefined: function() {
260
+ return n("Undefined");
261
+ },
262
+ _regexp: function(r) {
263
+ return n("regex:" + r.toString());
264
+ },
265
+ _uint8array: function(r) {
266
+ n("uint8array:");
267
+ return this.dispatch(Array.prototype.slice.call(r));
268
+ },
269
+ _uint8clampedarray: function(r) {
270
+ n("uint8clampedarray:");
271
+ return this.dispatch(Array.prototype.slice.call(r));
272
+ },
273
+ _int8array: function(r) {
274
+ n("int8array:");
275
+ return this.dispatch(Array.prototype.slice.call(r));
276
+ },
277
+ _uint16array: function(r) {
278
+ n("uint16array:");
279
+ return this.dispatch(Array.prototype.slice.call(r));
280
+ },
281
+ _int16array: function(r) {
282
+ n("int16array:");
283
+ return this.dispatch(Array.prototype.slice.call(r));
284
+ },
285
+ _uint32array: function(r) {
286
+ n("uint32array:");
287
+ return this.dispatch(Array.prototype.slice.call(r));
288
+ },
289
+ _int32array: function(r) {
290
+ n("int32array:");
291
+ return this.dispatch(Array.prototype.slice.call(r));
292
+ },
293
+ _float32array: function(r) {
294
+ n("float32array:");
295
+ return this.dispatch(Array.prototype.slice.call(r));
296
+ },
297
+ _float64array: function(r) {
298
+ n("float64array:");
299
+ return this.dispatch(Array.prototype.slice.call(r));
300
+ },
301
+ _arraybuffer: function(r) {
302
+ n("arraybuffer:");
303
+ return this.dispatch(new Uint8Array(r));
304
+ },
305
+ _url: function(r) {
306
+ return n("url:" + r.toString(), "utf8");
307
+ },
308
+ _map: function(t) {
309
+ n("map:");
310
+ var e = Array.from(t);
311
+ return this._array(e, r.unorderedSets !== false);
312
+ },
313
+ _set: function(t) {
314
+ n("set:");
315
+ var e = Array.from(t);
316
+ return this._array(e, r.unorderedSets !== false);
317
+ },
318
+ _file: function(r) {
319
+ n("file:");
320
+ return this.dispatch([ r.name, r.size, r.type, r.lastModfied ]);
321
+ },
322
+ _blob: function() {
323
+ if (r.ignoreUnknown) {
324
+ return n("[blob]");
325
+ }
326
+ throw Error("Hashing Blob objects is currently not supported\n" + "(see https://github.com/puleos/object-hash/issues/26)\n" + 'Use "options.replacer" or "options.ignoreUnknown"\n');
327
+ },
328
+ _domwindow: function() {
329
+ return n("domwindow");
330
+ },
331
+ _bigint: function(r) {
332
+ return n("bigint:" + r.toString());
333
+ },
334
+ _process: function() {
335
+ return n("process");
336
+ },
337
+ _timer: function() {
338
+ return n("timer");
339
+ },
340
+ _pipe: function() {
341
+ return n("pipe");
342
+ },
343
+ _tcp: function() {
344
+ return n("tcp");
345
+ },
346
+ _udp: function() {
347
+ return n("udp");
348
+ },
349
+ _tty: function() {
350
+ return n("tty");
351
+ },
352
+ _statwatcher: function() {
353
+ return n("statwatcher");
354
+ },
355
+ _securecontext: function() {
356
+ return n("securecontext");
357
+ },
358
+ _connection: function() {
359
+ return n("connection");
360
+ },
361
+ _zlib: function() {
362
+ return n("zlib");
363
+ },
364
+ _context: function() {
365
+ return n("context");
366
+ },
367
+ _nodescript: function() {
368
+ return n("nodescript");
369
+ },
370
+ _httpparser: function() {
371
+ return n("httpparser");
372
+ },
373
+ _dataview: function() {
374
+ return n("dataview");
375
+ },
376
+ _signal: function() {
377
+ return n("signal");
378
+ },
379
+ _fsevent: function() {
380
+ return n("fsevent");
381
+ },
382
+ _tlswrap: function() {
383
+ return n("tlswrap");
201
384
  }
202
- var u = [];
203
- var a = t.map((function(t) {
204
- var n = new l;
205
- var i = e.slice();
206
- var o = f(r, n, i);
207
- o.dispatch(t);
208
- u = u.concat(i.slice(e.length));
209
- return n.read().toString();
210
- }));
211
- e = e.concat(u);
212
- a.sort();
213
- return this._array(a, false);
214
- },
215
- _date: function(r) {
216
- return n("date:" + r.toJSON());
217
- },
218
- _symbol: function(r) {
219
- return n("symbol:" + r.toString());
220
- },
221
- _error: function(r) {
222
- return n("error:" + r.toString());
223
- },
224
- _boolean: function(r) {
225
- return n("bool:" + r.toString());
226
- },
227
- _string: function(r) {
228
- n("string:" + r.length + ":");
229
- n(r.toString());
230
- },
231
- _function: function(t) {
232
- n("fn:");
233
- if (s(t)) {
234
- this.dispatch("[native]");
235
- } else {
236
- this.dispatch(t.toString());
237
- }
238
- if (r.respectFunctionNames !== false) {
239
- this.dispatch("function-name:" + String(t.name));
240
- }
241
- if (r.respectFunctionProperties) {
242
- this._object(t);
243
- }
244
- },
245
- _number: function(r) {
246
- return n("number:" + r.toString());
247
- },
248
- _xml: function(r) {
249
- return n("xml:" + r.toString());
250
- },
251
- _null: function() {
252
- return n("Null");
253
- },
254
- _undefined: function() {
255
- return n("Undefined");
256
- },
257
- _regexp: function(r) {
258
- return n("regex:" + r.toString());
259
- },
260
- _uint8array: function(r) {
261
- n("uint8array:");
262
- return this.dispatch(Array.prototype.slice.call(r));
263
- },
264
- _uint8clampedarray: function(r) {
265
- n("uint8clampedarray:");
266
- return this.dispatch(Array.prototype.slice.call(r));
267
- },
268
- _int8array: function(r) {
269
- n("int8array:");
270
- return this.dispatch(Array.prototype.slice.call(r));
271
- },
272
- _uint16array: function(r) {
273
- n("uint16array:");
274
- return this.dispatch(Array.prototype.slice.call(r));
275
- },
276
- _int16array: function(r) {
277
- n("int16array:");
278
- return this.dispatch(Array.prototype.slice.call(r));
279
- },
280
- _uint32array: function(r) {
281
- n("uint32array:");
282
- return this.dispatch(Array.prototype.slice.call(r));
283
- },
284
- _int32array: function(r) {
285
- n("int32array:");
286
- return this.dispatch(Array.prototype.slice.call(r));
287
- },
288
- _float32array: function(r) {
289
- n("float32array:");
290
- return this.dispatch(Array.prototype.slice.call(r));
291
- },
292
- _float64array: function(r) {
293
- n("float64array:");
294
- return this.dispatch(Array.prototype.slice.call(r));
295
- },
296
- _arraybuffer: function(r) {
297
- n("arraybuffer:");
298
- return this.dispatch(new Uint8Array(r));
299
- },
300
- _url: function(r) {
301
- return n("url:" + r.toString(), "utf8");
302
- },
303
- _map: function(t) {
304
- n("map:");
305
- var e = Array.from(t);
306
- return this._array(e, r.unorderedSets !== false);
307
- },
308
- _set: function(t) {
309
- n("set:");
310
- var e = Array.from(t);
311
- return this._array(e, r.unorderedSets !== false);
312
- },
313
- _file: function(r) {
314
- n("file:");
315
- return this.dispatch([ r.name, r.size, r.type, r.lastModfied ]);
316
- },
317
- _blob: function() {
318
- if (r.ignoreUnknown) {
319
- return n("[blob]");
385
+ };
386
+ }
387
+ function l() {
388
+ return {
389
+ buf: "",
390
+ write: function(r) {
391
+ this.buf += r;
392
+ },
393
+ end: function(r) {
394
+ this.buf += r;
395
+ },
396
+ read: function() {
397
+ return this.buf;
320
398
  }
321
- throw Error("Hashing Blob objects is currently not supported\n" + "(see https://github.com/puleos/object-hash/issues/26)\n" + 'Use "options.replacer" or "options.ignoreUnknown"\n');
322
- },
323
- _domwindow: function() {
324
- return n("domwindow");
325
- },
326
- _bigint: function(r) {
327
- return n("bigint:" + r.toString());
328
- },
329
- _process: function() {
330
- return n("process");
331
- },
332
- _timer: function() {
333
- return n("timer");
334
- },
335
- _pipe: function() {
336
- return n("pipe");
337
- },
338
- _tcp: function() {
339
- return n("tcp");
340
- },
341
- _udp: function() {
342
- return n("udp");
343
- },
344
- _tty: function() {
345
- return n("tty");
346
- },
347
- _statwatcher: function() {
348
- return n("statwatcher");
349
- },
350
- _securecontext: function() {
351
- return n("securecontext");
352
- },
353
- _connection: function() {
354
- return n("connection");
355
- },
356
- _zlib: function() {
357
- return n("zlib");
358
- },
359
- _context: function() {
360
- return n("context");
361
- },
362
- _nodescript: function() {
363
- return n("nodescript");
364
- },
365
- _httpparser: function() {
366
- return n("httpparser");
367
- },
368
- _dataview: function() {
369
- return n("dataview");
370
- },
371
- _signal: function() {
372
- return n("signal");
373
- },
374
- _fsevent: function() {
375
- return n("fsevent");
376
- },
377
- _tlswrap: function() {
378
- return n("tlswrap");
379
- }
380
- };
381
- }
382
- function l() {
383
- return {
384
- buf: "",
385
- write: function(r) {
386
- this.buf += r;
387
- },
388
- end: function(r) {
389
- this.buf += r;
390
- },
391
- read: function() {
392
- return this.buf;
393
- }
394
- };
395
- }
396
- })(e, e.exports);
399
+ };
400
+ }
401
+ })(e, e.exports);
402
+ return e.exports;
403
+ }
397
404
 
398
- var i = e.exports;
405
+ var u = o();
399
406
 
400
- const o = r(i);
407
+ const a = r(u);
401
408
 
402
- function u(r, t) {
403
- return o(r, t);
409
+ function s(r, t) {
410
+ return a(r, t);
404
411
  }
405
412
 
406
- export { u as ObjectHash };
413
+ export { s as ObjectHash };