lakutata 2.0.81 → 2.0.83

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 (234) hide show
  1. package/com/docker.cjs +1 -1
  2. package/com/docker.mjs +1 -1
  3. package/decorator/orm.cjs +84 -84
  4. package/decorator/orm.mjs +42 -128
  5. package/orm.cjs +873 -1410
  6. package/orm.mjs +708 -1458
  7. package/package.json +1 -1
  8. package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +230 -239
  9. package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +230 -239
  10. package/src/components/docker/ConnectionOptionsBuilder.cjs +1 -1
  11. package/src/components/docker/ConnectionOptionsBuilder.mjs +1 -1
  12. package/src/components/docker/Docker.cjs +4919 -4808
  13. package/src/components/docker/Docker.mjs +4939 -4828
  14. package/src/components/docker/lib/DockerContainer.cjs +1 -1
  15. package/src/components/docker/lib/DockerContainer.mjs +1 -1
  16. package/src/components/docker/lib/DockerContainerTTY.cjs +1 -1
  17. package/src/components/docker/lib/DockerContainerTTY.mjs +1 -1
  18. package/src/components/entrypoint/Entrypoint.cjs +1669 -2159
  19. package/src/components/entrypoint/Entrypoint.mjs +1629 -2119
  20. package/src/decorators/orm/AfterInsert.cjs +26 -4
  21. package/src/decorators/orm/AfterInsert.mjs +25 -5
  22. package/src/decorators/orm/AfterLoad.cjs +26 -4
  23. package/src/decorators/orm/AfterLoad.mjs +25 -5
  24. package/src/decorators/orm/AfterRecover.cjs +26 -4
  25. package/src/decorators/orm/AfterRecover.mjs +25 -5
  26. package/src/decorators/orm/AfterRemove.cjs +26 -4
  27. package/src/decorators/orm/AfterRemove.mjs +25 -5
  28. package/src/decorators/orm/AfterSoftRemove.cjs +26 -4
  29. package/src/decorators/orm/AfterSoftRemove.mjs +25 -5
  30. package/src/decorators/orm/AfterUpdate.cjs +26 -4
  31. package/src/decorators/orm/AfterUpdate.mjs +25 -5
  32. package/src/decorators/orm/BeforeInsert.cjs +26 -4
  33. package/src/decorators/orm/BeforeInsert.mjs +25 -5
  34. package/src/decorators/orm/BeforeRecover.cjs +26 -4
  35. package/src/decorators/orm/BeforeRecover.mjs +25 -5
  36. package/src/decorators/orm/BeforeRemove.cjs +26 -4
  37. package/src/decorators/orm/BeforeRemove.mjs +25 -5
  38. package/src/decorators/orm/BeforeSoftRemove.cjs +26 -4
  39. package/src/decorators/orm/BeforeSoftRemove.mjs +25 -5
  40. package/src/decorators/orm/BeforeUpdate.cjs +26 -4
  41. package/src/decorators/orm/BeforeUpdate.mjs +25 -5
  42. package/src/decorators/orm/Check.cjs +29 -4
  43. package/src/decorators/orm/Check.mjs +28 -5
  44. package/src/decorators/orm/ChildEntity.cjs +29 -4
  45. package/src/decorators/orm/ChildEntity.mjs +28 -5
  46. package/src/decorators/orm/Column.cjs +61 -4
  47. package/src/decorators/orm/Column.mjs +61 -6
  48. package/src/decorators/orm/CreateDateColumn.cjs +25 -4
  49. package/src/decorators/orm/CreateDateColumn.mjs +24 -5
  50. package/src/decorators/orm/DeleteDateColumn.cjs +25 -4
  51. package/src/decorators/orm/DeleteDateColumn.mjs +23 -4
  52. package/src/decorators/orm/Entity.cjs +35 -4
  53. package/src/decorators/orm/Entity.mjs +33 -4
  54. package/src/decorators/orm/EventSubscriber.cjs +22 -4
  55. package/src/decorators/orm/EventSubscriber.mjs +21 -5
  56. package/src/decorators/orm/Exclusion.cjs +29 -4
  57. package/src/decorators/orm/Exclusion.mjs +28 -5
  58. package/src/decorators/orm/Generated.cjs +24 -4
  59. package/src/decorators/orm/Generated.mjs +23 -5
  60. package/src/decorators/orm/Index.cjs +41 -4
  61. package/src/decorators/orm/Index.mjs +41 -6
  62. package/src/decorators/orm/JoinColumn.cjs +29 -4
  63. package/src/decorators/orm/JoinColumn.mjs +28 -5
  64. package/src/decorators/orm/JoinTable.cjs +30 -4
  65. package/src/decorators/orm/JoinTable.mjs +28 -4
  66. package/src/decorators/orm/ManyToMany.cjs +42 -4
  67. package/src/decorators/orm/ManyToMany.mjs +40 -4
  68. package/src/decorators/orm/ManyToOne.cjs +42 -4
  69. package/src/decorators/orm/ManyToOne.mjs +40 -4
  70. package/src/decorators/orm/ObjectIdColumn.cjs +28 -4
  71. package/src/decorators/orm/ObjectIdColumn.mjs +27 -5
  72. package/src/decorators/orm/OneToMany.cjs +34 -4
  73. package/src/decorators/orm/OneToMany.mjs +34 -6
  74. package/src/decorators/orm/OneToOne.cjs +42 -4
  75. package/src/decorators/orm/OneToOne.mjs +40 -4
  76. package/src/decorators/orm/PrimaryColumn.cjs +49 -4
  77. package/src/decorators/orm/PrimaryColumn.mjs +49 -6
  78. package/src/decorators/orm/PrimaryGeneratedColumn.cjs +54 -4
  79. package/src/decorators/orm/PrimaryGeneratedColumn.mjs +54 -6
  80. package/src/decorators/orm/RelationId.cjs +26 -4
  81. package/src/decorators/orm/RelationId.mjs +25 -5
  82. package/src/decorators/orm/TableInheritance.cjs +26 -4
  83. package/src/decorators/orm/TableInheritance.mjs +25 -5
  84. package/src/decorators/orm/Tree.cjs +24 -4
  85. package/src/decorators/orm/Tree.mjs +23 -5
  86. package/src/decorators/orm/TreeChildren.cjs +31 -4
  87. package/src/decorators/orm/TreeChildren.mjs +29 -4
  88. package/src/decorators/orm/TreeLevelColumn.cjs +25 -4
  89. package/src/decorators/orm/TreeLevelColumn.mjs +23 -4
  90. package/src/decorators/orm/TreeParent.cjs +31 -4
  91. package/src/decorators/orm/TreeParent.mjs +29 -4
  92. package/src/decorators/orm/Unique.cjs +44 -4
  93. package/src/decorators/orm/Unique.mjs +44 -6
  94. package/src/decorators/orm/UpdateDateColumn.cjs +25 -4
  95. package/src/decorators/orm/UpdateDateColumn.mjs +24 -5
  96. package/src/decorators/orm/VersionColumn.cjs +25 -4
  97. package/src/decorators/orm/VersionColumn.mjs +24 -5
  98. package/src/decorators/orm/ViewColumn.cjs +25 -4
  99. package/src/decorators/orm/ViewColumn.mjs +24 -5
  100. package/src/decorators/orm/ViewEntity.cjs +34 -4
  101. package/src/decorators/orm/ViewEntity.mjs +33 -5
  102. package/src/decorators/orm/VirtualColumn.cjs +42 -4
  103. package/src/decorators/orm/VirtualColumn.mjs +40 -4
  104. package/src/lib/base/EventEmitter.cjs +1193 -1200
  105. package/src/lib/base/EventEmitter.mjs +1194 -1201
  106. package/src/lib/base/internal/DataValidator.cjs +185 -174
  107. package/src/lib/base/internal/DataValidator.mjs +186 -175
  108. package/src/lib/base/internal/PatternManager.cjs +735 -740
  109. package/src/lib/base/internal/PatternManager.mjs +740 -745
  110. package/src/lib/core/Application.cjs +99 -112
  111. package/src/lib/core/Application.mjs +127 -140
  112. package/src/lib/helpers/IsHtml.cjs +13 -7
  113. package/src/lib/helpers/IsHtml.mjs +13 -7
  114. package/src/lib/helpers/IsXML.cjs +1016 -1158
  115. package/src/lib/helpers/IsXML.mjs +729 -871
  116. package/src/lib/helpers/ObjectHash.cjs +371 -378
  117. package/src/lib/helpers/ObjectHash.mjs +371 -378
  118. package/src/lib/helpers/RandomString.cjs +146 -167
  119. package/src/lib/helpers/RandomString.mjs +145 -166
  120. package/src/lib/helpers/URLBuilder.cjs +355 -355
  121. package/src/lib/helpers/URLBuilder.mjs +350 -350
  122. package/src/lib/ioc/ListModules.cjs +5237 -5160
  123. package/src/lib/ioc/ListModules.mjs +5252 -5175
  124. package/src/lib/validation/VLD.cjs +3903 -4080
  125. package/src/lib/validation/VLD.mjs +2793 -2970
  126. package/src/providers/migration/GenerateMigration.cjs +2 -2
  127. package/src/providers/migration/GenerateMigration.mjs +2 -2
  128. package/vendor/Package.112.cjs +38321 -38240
  129. package/vendor/Package.112.mjs +37720 -37579
  130. package/vendor/Package.16.cjs +7386 -7268
  131. package/vendor/Package.16.mjs +6706 -6588
  132. package/vendor/Package.18.cjs +48229 -20
  133. package/vendor/Package.18.mjs +48192 -24
  134. package/vendor/Package.2.cjs +5698 -5727
  135. package/vendor/Package.2.mjs +5707 -5736
  136. package/vendor/Package.4.cjs +874 -884
  137. package/vendor/Package.4.mjs +874 -884
  138. package/vendor/Package.5.cjs +11 -15
  139. package/vendor/Package.5.mjs +7 -11
  140. package/vendor/Package.6.cjs +511 -520
  141. package/vendor/Package.6.mjs +534 -543
  142. package/vendor/Package.62.cjs +87 -90
  143. package/vendor/Package.62.mjs +180 -183
  144. package/vendor/Package.65.cjs +1285 -1292
  145. package/vendor/Package.65.mjs +190 -197
  146. package/vendor/Package.68.cjs +111 -252
  147. package/vendor/Package.68.mjs +134 -268
  148. package/vendor/Package.9.cjs +118 -132
  149. package/vendor/Package.9.mjs +124 -138
  150. package/vendor/TypeDef.internal.3.d.ts +0 -14
  151. package/vendor/Package.19.cjs +0 -37
  152. package/vendor/Package.19.mjs +0 -35
  153. package/vendor/Package.20.cjs +0 -37
  154. package/vendor/Package.20.mjs +0 -35
  155. package/vendor/Package.21.cjs +0 -37
  156. package/vendor/Package.21.mjs +0 -35
  157. package/vendor/Package.22.cjs +0 -37
  158. package/vendor/Package.22.mjs +0 -35
  159. package/vendor/Package.23.cjs +0 -37
  160. package/vendor/Package.23.mjs +0 -35
  161. package/vendor/Package.24.cjs +0 -37
  162. package/vendor/Package.24.mjs +0 -35
  163. package/vendor/Package.25.cjs +0 -37
  164. package/vendor/Package.25.mjs +0 -35
  165. package/vendor/Package.26.cjs +0 -37
  166. package/vendor/Package.26.mjs +0 -35
  167. package/vendor/Package.27.cjs +0 -37
  168. package/vendor/Package.27.mjs +0 -35
  169. package/vendor/Package.28.cjs +0 -37
  170. package/vendor/Package.28.mjs +0 -35
  171. package/vendor/Package.29.cjs +0 -40
  172. package/vendor/Package.29.mjs +0 -38
  173. package/vendor/Package.30.cjs +0 -41
  174. package/vendor/Package.30.mjs +0 -39
  175. package/vendor/Package.31.cjs +0 -72
  176. package/vendor/Package.31.mjs +0 -70
  177. package/vendor/Package.32.cjs +0 -37
  178. package/vendor/Package.32.mjs +0 -35
  179. package/vendor/Package.33.cjs +0 -37
  180. package/vendor/Package.33.mjs +0 -35
  181. package/vendor/Package.34.cjs +0 -46
  182. package/vendor/Package.34.mjs +0 -44
  183. package/vendor/Package.35.cjs +0 -34
  184. package/vendor/Package.35.mjs +0 -32
  185. package/vendor/Package.36.cjs +0 -40
  186. package/vendor/Package.36.mjs +0 -38
  187. package/vendor/Package.37.cjs +0 -36
  188. package/vendor/Package.37.mjs +0 -34
  189. package/vendor/Package.38.cjs +0 -52
  190. package/vendor/Package.38.mjs +0 -50
  191. package/vendor/Package.39.cjs +0 -41
  192. package/vendor/Package.39.mjs +0 -39
  193. package/vendor/Package.40.cjs +0 -42
  194. package/vendor/Package.40.mjs +0 -40
  195. package/vendor/Package.41.cjs +0 -53
  196. package/vendor/Package.41.mjs +0 -51
  197. package/vendor/Package.42.cjs +0 -53
  198. package/vendor/Package.42.mjs +0 -51
  199. package/vendor/Package.43.cjs +0 -40
  200. package/vendor/Package.43.mjs +0 -38
  201. package/vendor/Package.44.cjs +0 -46
  202. package/vendor/Package.44.mjs +0 -44
  203. package/vendor/Package.45.cjs +0 -53
  204. package/vendor/Package.45.mjs +0 -51
  205. package/vendor/Package.46.cjs +0 -59
  206. package/vendor/Package.46.mjs +0 -57
  207. package/vendor/Package.47.cjs +0 -65
  208. package/vendor/Package.47.mjs +0 -63
  209. package/vendor/Package.48.cjs +0 -38
  210. package/vendor/Package.48.mjs +0 -36
  211. package/vendor/Package.49.cjs +0 -38
  212. package/vendor/Package.49.mjs +0 -36
  213. package/vendor/Package.50.cjs +0 -36
  214. package/vendor/Package.50.mjs +0 -34
  215. package/vendor/Package.51.cjs +0 -43
  216. package/vendor/Package.51.mjs +0 -41
  217. package/vendor/Package.52.cjs +0 -37
  218. package/vendor/Package.52.mjs +0 -35
  219. package/vendor/Package.53.cjs +0 -43
  220. package/vendor/Package.53.mjs +0 -41
  221. package/vendor/Package.54.cjs +0 -55
  222. package/vendor/Package.54.mjs +0 -53
  223. package/vendor/Package.55.cjs +0 -37
  224. package/vendor/Package.55.mjs +0 -35
  225. package/vendor/Package.56.cjs +0 -37
  226. package/vendor/Package.56.mjs +0 -35
  227. package/vendor/Package.57.cjs +0 -37
  228. package/vendor/Package.57.mjs +0 -35
  229. package/vendor/Package.58.cjs +0 -45
  230. package/vendor/Package.58.mjs +0 -43
  231. package/vendor/Package.59.cjs +0 -53
  232. package/vendor/Package.59.mjs +0 -51
  233. package/vendor/Package.60.cjs +0 -47649
  234. package/vendor/Package.60.mjs +0 -47606
@@ -1,12 +1,12 @@
1
- import "./Package.5.mjs";
1
+ import { g as e } from "./Package.5.mjs";
2
2
 
3
3
  import "./Package.13.mjs";
4
4
 
5
5
  import "./Package.10.mjs";
6
6
 
7
- import e from "tty";
7
+ import t from "tty";
8
8
 
9
- import t from "util";
9
+ import r from "util";
10
10
 
11
11
 
12
12
  // -- Shims --
@@ -16,7 +16,7 @@ import cjsModule from 'node:module';
16
16
  const __filename = cjsUrl.fileURLToPath(import.meta.url);
17
17
  const __dirname = cjsPath.dirname(__filename);
18
18
  const require = cjsModule.createRequire(import.meta.url);
19
- var r = {
19
+ var s = {
20
20
  exports: {}
21
21
  };
22
22
 
@@ -24,13 +24,13 @@ var n = {
24
24
  exports: {}
25
25
  };
26
26
 
27
- var s = n.exports;
27
+ var o = n.exports;
28
28
 
29
- var o;
29
+ var i;
30
30
 
31
- function i() {
32
- if (o) return n.exports;
33
- o = 1;
31
+ function a() {
32
+ if (i) return n.exports;
33
+ i = 1;
34
34
  if (typeof Object.create === "function") {
35
35
  n.exports = function e(t, r) {
36
36
  if (r) {
@@ -49,9 +49,9 @@ function i() {
49
49
  n.exports = function e(t, r) {
50
50
  if (r) {
51
51
  t.super_ = r;
52
- var n = function() {};
53
- n.prototype = r.prototype;
54
- t.prototype = new n;
52
+ var s = function() {};
53
+ s.prototype = r.prototype;
54
+ t.prototype = new s;
55
55
  t.prototype.constructor = t;
56
56
  }
57
57
  };
@@ -59,45 +59,45 @@ function i() {
59
59
  return n.exports;
60
60
  }
61
61
 
62
- var a = r.exports;
62
+ var c = s.exports;
63
63
 
64
- var c;
64
+ var u;
65
65
 
66
- function u() {
67
- if (c) return r.exports;
68
- c = 1;
66
+ function f() {
67
+ if (u) return s.exports;
68
+ u = 1;
69
69
  try {
70
70
  var e = require("util");
71
71
  if (typeof e.inherits !== "function") throw "";
72
- r.exports = e.inherits;
72
+ s.exports = e.inherits;
73
73
  } catch (e) {
74
- r.exports = i();
74
+ s.exports = a();
75
75
  }
76
- return r.exports;
76
+ return s.exports;
77
77
  }
78
78
 
79
- var f = {
79
+ var l = {
80
80
  exports: {}
81
81
  };
82
82
 
83
- var l = {
83
+ var p = {
84
84
  exports: {}
85
85
  };
86
86
 
87
- var p;
88
-
89
87
  var d;
90
88
 
91
- function C() {
92
- if (d) return p;
93
- d = 1;
89
+ var C;
90
+
91
+ function m() {
92
+ if (C) return d;
93
+ C = 1;
94
94
  var e = 1e3;
95
95
  var t = e * 60;
96
96
  var r = t * 60;
97
- var n = r * 24;
98
- var s = n * 7;
99
- var o = n * 365.25;
100
- p = function(e, t) {
97
+ var s = r * 24;
98
+ var n = s * 7;
99
+ var o = s * 365.25;
100
+ d = function(e, t) {
101
101
  t = t || {};
102
102
  var r = typeof e;
103
103
  if (r === "string" && e.length > 0) {
@@ -129,12 +129,12 @@ function C() {
129
129
  case "weeks":
130
130
  case "week":
131
131
  case "w":
132
- return c * s;
132
+ return c * n;
133
133
 
134
134
  case "days":
135
135
  case "day":
136
136
  case "d":
137
- return c * n;
137
+ return c * s;
138
138
 
139
139
  case "hours":
140
140
  case "hour":
@@ -168,60 +168,60 @@ function C() {
168
168
  return undefined;
169
169
  }
170
170
  }
171
- function a(s) {
172
- var o = Math.abs(s);
173
- if (o >= n) {
174
- return Math.round(s / n) + "d";
171
+ function a(n) {
172
+ var o = Math.abs(n);
173
+ if (o >= s) {
174
+ return Math.round(n / s) + "d";
175
175
  }
176
176
  if (o >= r) {
177
- return Math.round(s / r) + "h";
177
+ return Math.round(n / r) + "h";
178
178
  }
179
179
  if (o >= t) {
180
- return Math.round(s / t) + "m";
180
+ return Math.round(n / t) + "m";
181
181
  }
182
182
  if (o >= e) {
183
- return Math.round(s / e) + "s";
183
+ return Math.round(n / e) + "s";
184
184
  }
185
- return s + "ms";
185
+ return n + "ms";
186
186
  }
187
- function c(s) {
188
- var o = Math.abs(s);
189
- if (o >= n) {
190
- return u(s, o, n, "day");
187
+ function c(n) {
188
+ var o = Math.abs(n);
189
+ if (o >= s) {
190
+ return u(n, o, s, "day");
191
191
  }
192
192
  if (o >= r) {
193
- return u(s, o, r, "hour");
193
+ return u(n, o, r, "hour");
194
194
  }
195
195
  if (o >= t) {
196
- return u(s, o, t, "minute");
196
+ return u(n, o, t, "minute");
197
197
  }
198
198
  if (o >= e) {
199
- return u(s, o, e, "second");
199
+ return u(n, o, e, "second");
200
200
  }
201
- return s + " ms";
201
+ return n + " ms";
202
202
  }
203
- function u(e, t, r, n) {
204
- var s = t >= r * 1.5;
205
- return Math.round(e / r) + " " + n + (s ? "s" : "");
203
+ function u(e, t, r, s) {
204
+ var n = t >= r * 1.5;
205
+ return Math.round(e / r) + " " + s + (n ? "s" : "");
206
206
  }
207
- return p;
207
+ return d;
208
208
  }
209
209
 
210
- var m;
211
-
212
210
  var h;
213
211
 
214
- function g() {
215
- if (h) return m;
216
- h = 1;
212
+ var g;
213
+
214
+ function F() {
215
+ if (g) return h;
216
+ g = 1;
217
217
  function e(e) {
218
218
  r.debug = r;
219
219
  r.default = r;
220
220
  r.coerce = c;
221
221
  r.disable = i;
222
- r.enable = s;
222
+ r.enable = n;
223
223
  r.enabled = a;
224
- r.humanize = C();
224
+ r.humanize = m();
225
225
  r.destroy = u;
226
226
  Object.keys(e).forEach((t => {
227
227
  r[t] = e[t];
@@ -240,54 +240,54 @@ function g() {
240
240
  r.selectColor = t;
241
241
  function r(e) {
242
242
  let t;
243
- let s = null;
243
+ let n = null;
244
244
  let o;
245
245
  let i;
246
246
  function a(...e) {
247
247
  if (!a.enabled) {
248
248
  return;
249
249
  }
250
- const n = a;
251
- const s = Number(new Date);
252
- const o = s - (t || s);
253
- n.diff = o;
254
- n.prev = t;
255
- n.curr = s;
256
- t = s;
250
+ const s = a;
251
+ const n = Number(new Date);
252
+ const o = n - (t || n);
253
+ s.diff = o;
254
+ s.prev = t;
255
+ s.curr = n;
256
+ t = n;
257
257
  e[0] = r.coerce(e[0]);
258
258
  if (typeof e[0] !== "string") {
259
259
  e.unshift("%O");
260
260
  }
261
261
  let i = 0;
262
- e[0] = e[0].replace(/%([a-zA-Z%])/g, ((t, s) => {
262
+ e[0] = e[0].replace(/%([a-zA-Z%])/g, ((t, n) => {
263
263
  if (t === "%%") {
264
264
  return "%";
265
265
  }
266
266
  i++;
267
- const o = r.formatters[s];
267
+ const o = r.formatters[n];
268
268
  if (typeof o === "function") {
269
269
  const r = e[i];
270
- t = o.call(n, r);
270
+ t = o.call(s, r);
271
271
  e.splice(i, 1);
272
272
  i--;
273
273
  }
274
274
  return t;
275
275
  }));
276
- r.formatArgs.call(n, e);
277
- const c = n.log || r.log;
278
- c.apply(n, e);
276
+ r.formatArgs.call(s, e);
277
+ const c = s.log || r.log;
278
+ c.apply(s, e);
279
279
  }
280
280
  a.namespace = e;
281
281
  a.useColors = r.useColors();
282
282
  a.color = r.selectColor(e);
283
- a.extend = n;
283
+ a.extend = s;
284
284
  a.destroy = r.destroy;
285
285
  Object.defineProperty(a, "enabled", {
286
286
  enumerable: true,
287
287
  configurable: false,
288
288
  get: () => {
289
- if (s !== null) {
290
- return s;
289
+ if (n !== null) {
290
+ return n;
291
291
  }
292
292
  if (o !== r.namespaces) {
293
293
  o = r.namespaces;
@@ -296,7 +296,7 @@ function g() {
296
296
  return i;
297
297
  },
298
298
  set: e => {
299
- s = e;
299
+ n = e;
300
300
  }
301
301
  });
302
302
  if (typeof r.init === "function") {
@@ -304,12 +304,12 @@ function g() {
304
304
  }
305
305
  return a;
306
306
  }
307
- function n(e, t) {
308
- const n = r(this.namespace + (typeof t === "undefined" ? ":" : t) + e);
309
- n.log = this.log;
310
- return n;
307
+ function s(e, t) {
308
+ const s = r(this.namespace + (typeof t === "undefined" ? ":" : t) + e);
309
+ s.log = this.log;
310
+ return s;
311
311
  }
312
- function s(e) {
312
+ function n(e) {
313
313
  r.save(e);
314
314
  r.namespaces = e;
315
315
  r.names = [];
@@ -325,31 +325,31 @@ function g() {
325
325
  }
326
326
  function o(e, t) {
327
327
  let r = 0;
328
- let n = 0;
329
- let s = -1;
328
+ let s = 0;
329
+ let n = -1;
330
330
  let o = 0;
331
331
  while (r < e.length) {
332
- if (n < t.length && (t[n] === e[r] || t[n] === "*")) {
333
- if (t[n] === "*") {
334
- s = n;
332
+ if (s < t.length && (t[s] === e[r] || t[s] === "*")) {
333
+ if (t[s] === "*") {
334
+ n = s;
335
335
  o = r;
336
- n++;
336
+ s++;
337
337
  } else {
338
338
  r++;
339
- n++;
339
+ s++;
340
340
  }
341
- } else if (s !== -1) {
342
- n = s + 1;
341
+ } else if (n !== -1) {
342
+ s = n + 1;
343
343
  o++;
344
344
  r = o;
345
345
  } else {
346
346
  return false;
347
347
  }
348
348
  }
349
- while (n < t.length && t[n] === "*") {
350
- n++;
349
+ while (s < t.length && t[s] === "*") {
350
+ s++;
351
351
  }
352
- return n === t.length;
352
+ return s === t.length;
353
353
  }
354
354
  function i() {
355
355
  const e = [ ...r.names, ...r.skips.map((e => "-" + e)) ].join(",");
@@ -381,20 +381,20 @@ function g() {
381
381
  r.enable(r.load());
382
382
  return r;
383
383
  }
384
- m = e;
385
- return m;
384
+ h = e;
385
+ return h;
386
386
  }
387
387
 
388
- var F = l.exports;
388
+ var v = p.exports;
389
389
 
390
- var v;
390
+ var y;
391
391
 
392
- function y() {
393
- if (v) return l.exports;
394
- v = 1;
392
+ function b() {
393
+ if (y) return p.exports;
394
+ y = 1;
395
395
  (function(e, t) {
396
- t.formatArgs = n;
397
- t.save = s;
396
+ t.formatArgs = s;
397
+ t.save = n;
398
398
  t.load = o;
399
399
  t.useColors = r;
400
400
  t.storage = i();
@@ -418,28 +418,28 @@ function y() {
418
418
  let e;
419
419
  return typeof document !== "undefined" && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || typeof window !== "undefined" && window.console && (window.console.firebug || window.console.exception && window.console.table) || typeof navigator !== "undefined" && navigator.userAgent && (e = navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)) && parseInt(e[1], 10) >= 31 || typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/);
420
420
  }
421
- function n(t) {
421
+ function s(t) {
422
422
  t[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + t[0] + (this.useColors ? "%c " : " ") + "+" + e.exports.humanize(this.diff);
423
423
  if (!this.useColors) {
424
424
  return;
425
425
  }
426
426
  const r = "color: " + this.color;
427
427
  t.splice(1, 0, r, "color: inherit");
428
- let n = 0;
429
428
  let s = 0;
429
+ let n = 0;
430
430
  t[0].replace(/%[a-zA-Z%]/g, (e => {
431
431
  if (e === "%%") {
432
432
  return;
433
433
  }
434
- n++;
434
+ s++;
435
435
  if (e === "%c") {
436
- s = n;
436
+ n = s;
437
437
  }
438
438
  }));
439
- t.splice(s, 0, r);
439
+ t.splice(n, 0, r);
440
440
  }
441
441
  t.log = console.debug || console.log || (() => {});
442
- function s(e) {
442
+ function n(e) {
443
443
  try {
444
444
  if (e) {
445
445
  t.storage.setItem("debug", e);
@@ -463,7 +463,7 @@ function y() {
463
463
  return localStorage;
464
464
  } catch (e) {}
465
465
  }
466
- e.exports = g()(t);
466
+ e.exports = F()(t);
467
467
  const {formatters: a} = e.exports;
468
468
  a.j = function(e) {
469
469
  try {
@@ -472,21 +472,21 @@ function y() {
472
472
  return "[UnexpectedJSONParseError]: " + e.message;
473
473
  }
474
474
  };
475
- })(l, l.exports);
476
- return l.exports;
475
+ })(p, p.exports);
476
+ return p.exports;
477
477
  }
478
478
 
479
- var b = {
479
+ var w = {
480
480
  exports: {}
481
481
  };
482
482
 
483
- var w;
484
-
485
483
  var x;
486
484
 
487
- function O() {
488
- if (x) return w;
489
- x = 1;
485
+ var O;
486
+
487
+ function j() {
488
+ if (O) return x;
489
+ O = 1;
490
490
  "use strict";
491
491
  function e() {
492
492
  const e = /(Chrome|Chromium)\/(?<chromeVersion>\d+)\./.exec(navigator.userAgent);
@@ -501,75 +501,75 @@ function O() {
501
501
  has256: false,
502
502
  has16m: false
503
503
  } : false;
504
- w = {
504
+ x = {
505
505
  stdout: t,
506
506
  stderr: t
507
507
  };
508
- return w;
508
+ return x;
509
509
  }
510
510
 
511
- var j = b.exports;
512
-
513
- var k;
514
-
515
- function A() {
516
- if (k) return b.exports;
517
- k = 1;
518
- (function(r, n) {
519
- const s = e;
520
- const o = t;
521
- n.init = p;
522
- n.log = u;
523
- n.formatArgs = a;
524
- n.save = f;
525
- n.load = l;
526
- n.useColors = i;
527
- n.destroy = o.deprecate((() => {}), "Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
528
- n.colors = [ 6, 2, 3, 4, 5, 1 ];
511
+ var k = w.exports;
512
+
513
+ var A;
514
+
515
+ function I() {
516
+ if (A) return w.exports;
517
+ A = 1;
518
+ (function(e, s) {
519
+ const n = t;
520
+ const o = r;
521
+ s.init = p;
522
+ s.log = u;
523
+ s.formatArgs = a;
524
+ s.save = f;
525
+ s.load = l;
526
+ s.useColors = i;
527
+ s.destroy = o.deprecate((() => {}), "Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
528
+ s.colors = [ 6, 2, 3, 4, 5, 1 ];
529
529
  try {
530
- const e = O();
530
+ const e = j();
531
531
  if (e && (e.stderr || e).level >= 2) {
532
- n.colors = [ 20, 21, 26, 27, 32, 33, 38, 39, 40, 41, 42, 43, 44, 45, 56, 57, 62, 63, 68, 69, 74, 75, 76, 77, 78, 79, 80, 81, 92, 93, 98, 99, 112, 113, 128, 129, 134, 135, 148, 149, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 178, 179, 184, 185, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 214, 215, 220, 221 ];
532
+ s.colors = [ 20, 21, 26, 27, 32, 33, 38, 39, 40, 41, 42, 43, 44, 45, 56, 57, 62, 63, 68, 69, 74, 75, 76, 77, 78, 79, 80, 81, 92, 93, 98, 99, 112, 113, 128, 129, 134, 135, 148, 149, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 178, 179, 184, 185, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 214, 215, 220, 221 ];
533
533
  }
534
534
  } catch (e) {}
535
- n.inspectOpts = Object.keys(process.env).filter((e => /^debug_/i.test(e))).reduce(((e, t) => {
535
+ s.inspectOpts = Object.keys(process.env).filter((e => /^debug_/i.test(e))).reduce(((e, t) => {
536
536
  const r = t.substring(6).toLowerCase().replace(/_([a-z])/g, ((e, t) => t.toUpperCase()));
537
- let n = process.env[t];
538
- if (/^(yes|on|true|enabled)$/i.test(n)) {
539
- n = true;
540
- } else if (/^(no|off|false|disabled)$/i.test(n)) {
541
- n = false;
542
- } else if (n === "null") {
543
- n = null;
537
+ let s = process.env[t];
538
+ if (/^(yes|on|true|enabled)$/i.test(s)) {
539
+ s = true;
540
+ } else if (/^(no|off|false|disabled)$/i.test(s)) {
541
+ s = false;
542
+ } else if (s === "null") {
543
+ s = null;
544
544
  } else {
545
- n = Number(n);
545
+ s = Number(s);
546
546
  }
547
- e[r] = n;
547
+ e[r] = s;
548
548
  return e;
549
549
  }), {});
550
550
  function i() {
551
- return "colors" in n.inspectOpts ? Boolean(n.inspectOpts.colors) : s.isatty(process.stderr.fd);
552
- }
553
- function a(e) {
554
- const {namespace: t, useColors: n} = this;
555
- if (n) {
556
- const n = this.color;
557
- const s = "[3" + (n < 8 ? n : "8;5;" + n);
558
- const o = ` ${s};1m${t} `;
559
- e[0] = o + e[0].split("\n").join("\n" + o);
560
- e.push(s + "m+" + r.exports.humanize(this.diff) + "");
551
+ return "colors" in s.inspectOpts ? Boolean(s.inspectOpts.colors) : n.isatty(process.stderr.fd);
552
+ }
553
+ function a(t) {
554
+ const {namespace: r, useColors: s} = this;
555
+ if (s) {
556
+ const s = this.color;
557
+ const n = "[3" + (s < 8 ? s : "8;5;" + s);
558
+ const o = ` ${n};1m${r} `;
559
+ t[0] = o + t[0].split("\n").join("\n" + o);
560
+ t.push(n + "m+" + e.exports.humanize(this.diff) + "");
561
561
  } else {
562
- e[0] = c() + t + " " + e[0];
562
+ t[0] = c() + r + " " + t[0];
563
563
  }
564
564
  }
565
565
  function c() {
566
- if (n.inspectOpts.hideDate) {
566
+ if (s.inspectOpts.hideDate) {
567
567
  return "";
568
568
  }
569
569
  return (new Date).toISOString() + " ";
570
570
  }
571
571
  function u(...e) {
572
- return process.stderr.write(o.formatWithOptions(n.inspectOpts, ...e) + "\n");
572
+ return process.stderr.write(o.formatWithOptions(s.inspectOpts, ...e) + "\n");
573
573
  }
574
574
  function f(e) {
575
575
  if (e) {
@@ -583,13 +583,13 @@ function A() {
583
583
  }
584
584
  function p(e) {
585
585
  e.inspectOpts = {};
586
- const t = Object.keys(n.inspectOpts);
586
+ const t = Object.keys(s.inspectOpts);
587
587
  for (let r = 0; r < t.length; r++) {
588
- e.inspectOpts[t[r]] = n.inspectOpts[t[r]];
588
+ e.inspectOpts[t[r]] = s.inspectOpts[t[r]];
589
589
  }
590
590
  }
591
- r.exports = g()(n);
592
- const {formatters: d} = r.exports;
591
+ e.exports = F()(s);
592
+ const {formatters: d} = e.exports;
593
593
  d.o = function(e) {
594
594
  this.inspectOpts.colors = this.useColors;
595
595
  return o.inspect(e, this.inspectOpts).split("\n").map((e => e.trim())).join(" ");
@@ -598,23 +598,20 @@ function A() {
598
598
  this.inspectOpts.colors = this.useColors;
599
599
  return o.inspect(e, this.inspectOpts);
600
600
  };
601
- })(b, b.exports);
602
- return b.exports;
601
+ })(w, w.exports);
602
+ return w.exports;
603
603
  }
604
604
 
605
- var I = f.exports;
605
+ var E = l.exports;
606
606
 
607
- var E;
608
-
609
- function B() {
610
- if (E) return f.exports;
611
- E = 1;
612
- if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
613
- f.exports = y();
614
- } else {
615
- f.exports = A();
616
- }
617
- return f.exports;
607
+ if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
608
+ l.exports = b();
609
+ } else {
610
+ l.exports = I();
618
611
  }
619
612
 
620
- export { B as a, u as r };
613
+ var B = l.exports;
614
+
615
+ const D = e(B);
616
+
617
+ export { f as r, B as s };